Hello.

I managed to add a NavigationPage into a drawer like so:

      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();

But now I have a serious problem: the events dont get propagated to the page
inside the drawer.

Is there a way to rectify this?
This must be something that others have encoutered.

Thanks in advance for your help and time.
jenia





--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/NavigationPage-inside-a-drawer-doesnt-receive-events-tp7585536.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