Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-08 Thread Dragonheart
Thanks a lot, Andreas! This solution works like a charm! You've saved my life :D -- View this message in context: http://qooxdoo.678.n2.nabble.com/Scrolling-and-zooming-on-different-mobile-devices-tp7585347p7586160.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-05 Thread Andreas Parusel
Hi, thanks for the code, now I understand the problem and you correctly pointed out in your last message that it works fine with text. The reason is that the element is asynchronous by nature. You create a with a src attribute and then the browser sends a request to load the image. This take

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-03 Thread Dragonheart
I'll continue speaking with myself :) This problem is only actual for embed html with image. If instead of an image I place lot's of text - it's scrolled ok from the first try without reloading the page. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Scrolling-and-zooming-on

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-03 Thread Dragonheart
I did a farther testing and found out that it doesn't depend on where do I put a real html content into the embed html. Earlier I clearly had a situation where scroll wasn't working only after updating embed html element after initialization of the page was finished, so probably I'm missing some sm

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-02 Thread Dragonheart
Thanks for the reply Andreas! I've noticed that I lost an important detail which causes this problem. In the initialize method of the page (I use qx.ui.mobile.page.NavigationPage btw, just as you've asked) i'm creating an embed html object with empty string for Html property and then I add it to

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-02 Thread Andreas Parusel
Another idea: instead of adding the toolbar after the content with this.add(toolbar) like, just try: this._getScrollContainer().getLayoutParent().add(toolbar); Best, Andreas Am 01.09.2014 um 14:16 schrieb Dragonheart : > I've continued my "investigation" and found something interesting

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-02 Thread Andreas Parusel
I’m having a similar layout in our app also with a toolbar and I cannot verify your problem either: The content remains scrollable. Is your view class inheriting from qx.ui.mobile.page.NavigationPage? It would be best if you could extract that specific view, remove all business logic and share

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-01 Thread Dragonheart
I've continued my "investigation" and found something interesting. Here's an example pic of a mobile's app page: You can see a navigation bar on top, then here goes the content and then there's two elements (button and toolbar) added to root

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-09-01 Thread Dragonheart
I'm still running into this issue. It's reproduced on iPhone5 too. Any help or ideas? As a quick reminder: elements added in root with "this.add()" are positioned over elements added to the content "this.getContent().add()". So when it happens that all the content technically fits the overall pag

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-02-23 Thread Dragonheart
Just as I said in the first post - I test it on iPhone 4s with 960px vertical resolution. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Scrolling-and-zooming-on-different-mobile-devices-tp7585347p7585366.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-02-21 Thread Christopher Zündorf
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 : > It's iOS6 with qx.Mobile 3.5. Check this simplified code: > > var page = new qx.ui.mobile.page.Navigati

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-02-21 Thread Dragonheart
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 = " ";

Re: [qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-02-18 Thread Christopher Zündorf
. Februar 2014 16:57 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] Scrolling and zooming on different mobile devices Hello once again :) I'm working on a mobile project and it looks like some features about scrolling and zoom are differ on different platforms. 1) On a de

[qooxdoo-devel] Scrolling and zooming on different mobile devices

2014-02-18 Thread Dragonheart
Hello once again :) I'm working on a mobile project and it looks like some features about scrolling and zoom are differ on different platforms. 1) On a desktop Google Chrome I can always scroll the page vertically, but on iPhone 4s (didn't check on other versions) I can't scroll the page when all