Qooxdoo can add a NavigationPage to the manager:
var manager = new qx.ui.mobile.page.Manager();
var page1 = new qx.ui.mobile.page.NavigationPage();
manager.addDetail(page1);
Now I want to create a Page instead and add a NavigationBar myself. The manager.addDetail only accepts NavigationPages. How to add the qx.ui.mobile.page.Page?
var page2 = new qx.ui.mobile.page.Page();
var navigationbar = new qx.ui.mobile.navigationbar.NavigationBar();
page2.add(navigationbar);
//... Adding buttons in navigationbar
manager.addDetail(page2); //fails: !(page2 instanceof qx.ui.mobile.page.NavigationPage
The answer: "Use NavigationPage is not usefull for me :)".