11-30-2012 05:01 AM
If I create a some controls using ControlDelegate I do not have access to my ContextProperties of the root QmlDocument from within theese controls.
Is this a bug or by design? Are there known workarounds?
If tried doing something like this without success:
ControlDelegate {
source: "DetailSheet.qml"
delegateActive: false
onControlChanged: {
if (control) {
control.app = root.app // <<<<< Passing the context property
control.open()
}
}
}