[qooxdoo-devel] Mobile app: phone/tablet menu button

2015-03-10 Thread Frédéric
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.Environm

Re: [qooxdoo-devel] Get current code in embed.Html (with Sage cell)

2015-03-10 Thread Bober1990
Dear Mustafa,   thanks again.   Unfortunately, it is still not working…   If I try to use your example:          var sage = new qx.ui.embed.Html('1+2');   sage.getContentElement().addClass('sage');   sage.s

[qooxdoo-devel] How to get an Object from existing HTML source

2015-03-10 Thread Bober1990
Hi,   in my Desktop-App, I would like to get an Instance of an Object for an CodeMirror Object that is created in an qx.ui.embed.Html("...").   In the _javascript_ Console I can access the Object by using JQuerry:   var editor = $('.CodeMirror')[0].CodeMirror;   Then I can edit the code in

Re: [qooxdoo-devel] How to get an Object from existing HTML source

2015-03-10 Thread Andreas Parusel
Hi, qooxdoo has an own query-API which is equivalent to jQuery in most cases. Simply replace ‚$‘ with ‚q‘ or ‚qxWeb‘: qxWeb('.CodeMirror')[0].CodeMirror; This should do the trick! Best regards Andreas Am 10.03.2015 um 12:02 schrieb bober1...@gmx.de: Hi, in my Deskto

Re: [qooxdoo-devel] Mobile app: phone/tablet menu button

2015-03-10 Thread Andreas Parusel
Hi, isn’t qx.ui.mobile.page.Manager with it's master/detail views already doing what you want? Have a look at the mobileshowcase (available under the demos section at qooxdoo.org) and visit it with either a tablet and a phone. If I understood your problem correctly, it is s

Re: [qooxdoo-devel] Mobile app: phone/tablet menu button

2015-03-10 Thread Frédéric
Le Tuesday 10 March 2015, Andreas a écrit : > isn’t qx.ui.mobile.page.Manager with it's master/detail views already > doing what you want? > > Have a look at the mobileshowcase (available under the demos section > at qooxdoo.org) and visit it with either a tablet > and a phone