Comment 1 for bug 1361919

Revision history for this message
Antti Kaijanmäki (kaijanmaki) wrote :

right now I'm working around this by havving a function object property in the page:

FooPage.qml:
...
    /// work around LP(#1361919)
    property var activateCb;
....
            onClicked: activateCb("Foo")
....

Bar.qml:
            pageStack.push(Qt.resolvedUrl("FooPage.qml"),
                           {
                               activateCb: myActivateFunction
                           });
....