the problem with the master, detail is that I dont know how to place the
master to the right of the detail.
Plus it doesnt have a navigationbar; that's a minor problem.

What I did was to use a Drawer and implement the functionality myself.
The only problem is that the NavigationPage inside the drawer doesnt receive
Events anymore.
This is what I did:


      var page1 = new qx.ui.mobile.page.NavigationPage();
      var drawer = new qx.ui.mobile.container.Drawer(page1, new
qx.ui.mobile.layout.VBox());
      drawer.setOrientation("right");
      var navigation = new qx.ui.mobile.container.Navigation();
      var page2 = new qx.ui.mobile.page.NavigationPage();
      navigation.add(page2);
      drawer.add(navigation);
      manager.addDetail([
        page1,
      ]);
      
      page1.show();
      page2.show();

How do I receive events in the NavigationPage inside the Drawer?



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/add-navigation-page-to-drawer-tp7585530p7585537.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment 
Start a new project now. Try Jenkins in the cloud.
http://p.sf.net/sfu/13600_Cloudbees
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to