Re: [SailfishDevel] Retrieve paramater from prev page on next page

2014-06-05 Thread i...@flyingfischer.ch
Autsch! Thanks! Works like a charm! ;-) Markus Am 05.06.2014 10:07, schrieb Andrey Kozhevnikov: onClicked: pageStack.push(Qt.resolvedUrl("nextPage.qml"), {topic: "myTopic"}) second parameter should pass to push, not resolvedUrl function 05.06.2014 14:05, i...@flyingfischer.ch пишет: onClic

Re: [SailfishDevel] Retrieve paramater from prev page on next page

2014-06-05 Thread Andrey Kozhevnikov
onClicked: pageStack.push(Qt.resolvedUrl("nextPage.qml"), {topic: "myTopic"}) second parameter should pass to push, not resolvedUrl function 05.06.2014 14:05, i...@flyingfischer.ch пишет: onClicked: pageStack.push(Qt.resolvedUrl("nextPage.qml", {topic: "myTopic"})) _

[SailfishDevel] Retrieve paramater from prev page on next page

2014-06-05 Thread i...@flyingfischer.ch
Caution, truely a beginners question... Hello I am stuck on retrieving information from a previous page in the next page. This is what I try to do: Send a parameter to nextPage by onClicked: pageStack.push(Qt.resolvedUrl("nextPage.qml", {topic: "myTopic"})) Try to retrieve the parameter o