It's iOS6 with qx.Mobile 3.5. Check this simplified code:

var page = new qx.ui.mobile.page.NavigationPage();
page.setTitle("Hello World");
page.addListener("initialize", function() {
  var someContent = new qx.ui.mobile.embed.Html();
            
            var html = "
";
            
            for (var i = 0; i < 13; i++) {
                        html += "
Some Text, string #" + (i + 1) + "";
            }
            html += "
";
            someContent.setHtml(html);
            page.getContent().add(someContent);

            var toolbar = new qx.ui.mobile.toolbar.ToolBar();

            var toolbarButton = new qx.ui.mobile.toolbar.Button("+");
            var toolbarButton2 = new qx.ui.mobile.toolbar.Button("+");
            var toolbarButton3 = new qx.ui.mobile.toolbar.Button("+");

            toolbar.add(toolbarButton);
            toolbar.add(toolbarButton2);
            toolbar.add(toolbarButton3);

            page.add(toolbar);
},this);

this.getManager().addDetail(page);

page.show();

It creates 13 strings, but only 11.5 of them are visible, 1.5 of them are
hidden under the toolbar. But the page is not scrollable since toolbar is on
another layer and technically contect fits the page, so these 1.5 strings
are inaccessible..




--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Scrolling-and-zooming-on-different-mobile-devices-tp7585347p7585361.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to