Domanda

I am using qooxdoo mobile 3.5. Is it possible to add custom buttons to the default header in a navigation page?

È stato utile?

Soluzione

Yes it is possible this way:

var button = new qx.ui.mobile.navigationbar.Button("foo");

page.getLeftContainer().add(button); page.getRightContainer().add(button);

http://demo.qooxdoo.org/current/apiviewer/#qx.ui.mobile.page.NavigationPage~getLeftContainer!method_public

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top