Hi!

On my mobile application, when using a desktop/tablet device, I do have a
"Main menu" button automatically added to the detail pages. But when using
a phone device, this button does not appear. Why?

In my code, I use this for the routing (from mobile showcase example):

  if (qx.core.Environment.get("device.type") == "tablet" ||
      qx.core.Environment.get("device.type") == "desktop") {
    this.getRouting().onGet("/.*", this._show, this._menuPage);
    this.getRouting().onGet("/", this._show, this._defaultWidgetsPage);
  }
  else {
    this.getRouting().onGet("/", this._show, this._menuPage);
  }

this._menuPage is the master page, and this._defaultWidgetsPage is the
page I want to be displayed at first, beside the menu page, when using a
tablet....

-- 
    Frédéric

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to