10-08-2012 01:14 AM
Hi everyone,
I want to push a Tabbed Pane from Navigation Pane. Following is the snippet I'm using:
--------------------------------------------------
QmlDocument *qml = QmlDocument::create("asset:///homescreen.qml").par
qml->setContextProperty("cs", this);
AbstractPane* root = qml->createRootObject<AbstractPane>();
void App:
penTabbedPane(){
QmlDocument *qmlTab = QmlDocument::create("asset:///tabs.qml").parent(th
TabbedPane* mTab;
mTab = qmlTab->createRootObject<TabbedPane>();
qobject_cast<NavigationPane *>(root)->push(qobject_cast<Page *>(mTab));
}
--------------------------------------------------
But the TabbedPane qml does not get opened.
10-09-2012 09:20 AM
No idea ?
I want to do the same thing in QML and it doesn't work too....
10-10-2012 12:31 AM
In Beta3 it will not possible to push tabbed pane from navigation pane.
Check out Sheet UI component by using that you can add tabbed pane.
https://developer.blackberry.com/cascades/referenc
10-10-2012 09:48 AM
Will it be possible, in a future release, to push a tabbed pane in a navigation pane ?
Cause in my case I would like to get the advantage of the stack of the navigation pane, also to get the back button.
01-16-2013 02:50 AM