@Steve-Fallows,
Just to clarify is receptorPath_textField also an id?
in that case your code
CTPanel {
id: ct_panel
Component.onCompleted: {
ct_panel.setUp() // Complete set up of the C++ object
console.log("CT Panel component completed.")
}
receptorPath: receptorPath_textField.text
}
should work wherever it is placed (in the same qml file).
if receptorPath_textFieldis is a grouped property from CalibrationPageForm and the id of the page is page
Have tou tried?
CalibrationPageForm {
id: page
receptorPath_textField.text: settings.receptorPath
}
CTPanel {
id: ct_panel
Component.onCompleted: {
ct_panel.setUp() // Complete set up of the C++ object
console.log("CT Panel component completed.")
}
receptorPath: page.receptorPath_textField.text
}