Hi,

sorry but I could not validate your problem on a iPad 2:

http://tinyurl.com/m5336bq


What kind of device do you have?

Greetz Christopher


Am 21.02.2014 um 15:06 schrieb Dragonheart <dragonheart...@gmail.com>:

> 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


------------------------------------------------------------------------------
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