12-21-2012 08:54 AM
Hello,
The app I'm working on consists on a NavigationPane with action items.
For now the action items open a new page. But what if I want to push a new NavigationPane, which one will open other pages ?
Are we limited to one level or could we use as many NavigationPane levels as we want ?
Thanks for your help,
Laurent
Solved! Go to Solution.
12-21-2012 09:07 AM
AFAIK:
on top of a NavigationPane you'll have only Pages - not NavigationPane's
but to open a new workflow you can open a Sheet and this Sheet can be again a NavigationPane
BTW: the root of the App can be a TabbedPane, where each tab can be a NavigationPane
12-21-2012 09:10 AM
thank you ekke
12-21-2012 09:22 AM
OK, what if I push a page defined as an attached object like this :
attachedObjects: [
ComponentDefinition {
id: pageADefinition
source: "PageA.qml"
}
]
And inside my PageA.qml I have a new page defined as an attach object :
attachedObjects: [
ComponentDefinition {
id: pageAADefinition
source: "PageAA.qml"
}
]
Could I push pageAADefinition from PageA code using
var newPage = pageAADefinition.createObject();
navigationPane.push(newPage);
12-21-2012 09:30 AM
try it ;-)