[qooxdoo-devel] Possible bug: generate.py with empty string as macro value

2013-09-13 Thread non
Hi, If you pass any macro on command line with an empty string as value, generate.py throws an exception. app$ ./generate.py -m TEST: Traceback (most recent call last): File /home/user/public_html/qooxdoo-3.0.1-sdk/tool/bin/generator.py, line 247, in module main() File

Re: [qooxdoo-devel] question about list and qx.ui.mobile.list.renderer

2013-09-13 Thread Christopher Zündorf
I think the qx.ui.mobile.form.Form would be a better choice for your purpose. You can also change the layout of the form by extending the qx.ui.mobile.form.renderer.Single Greetz Christopher Am 11.09.2013 um 18:11 schrieb rsantiagopaz: I understand you. I use your method (the correct

[qooxdoo-devel] How do we override the scrolling position .(Mobile module.)

2013-09-13 Thread seema tg
Hello, Qooxdoo remembers the scrolling position when we switch between the pages. Please tell us how do we override, or how to avoid this. Issue comes when we switch between the list pages with different records count. Example: nbsp;A list has 30 records and to reach the last record we would

Re: [qooxdoo-devel] How do we override the scrolling position .(Mobile module.)

2013-09-13 Thread Christopher Zündorf
Hi, have a look at this method: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.mobile.page.NavigationPage~scrollTo!method_public You could call a scrollTo(0,0,0) right after that page start event. Greetz Christopher Am 13.09.2013 um 12:42 schrieb seema tg: Hello, Qooxdoo remembers the

Re: [qooxdoo-devel] How do we override the scrolling position .(Mobile module.)

2013-09-13 Thread Christopher Zündorf
Here is an example for your question: http://tinyurl.com/mdhocu2 Am 13.09.2013 um 13:59 schrieb Christopher Zündorf: Hi, have a look at this method: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.mobile.page.NavigationPage~scrollTo!method_public You could call a scrollTo(0,0,0) right

Re: [qooxdoo-devel] How do we override the scrolling position .(Mobile module.)

2013-09-13 Thread seema tg
Hi, In out application, for each page we have 2 methods defined , one is initialize() (which gets called only once when the page is initialized), second is show() (which is called every time the page is loaded). I tried adding this scrollTo(0,0,0) under both the methods, but this didnt help us

Re: [qooxdoo-devel] How do we override the scrolling position .(Mobile module.)

2013-09-13 Thread Christopher Zündorf
Hi, have a look at this example. It is very easy: http://tinyurl.com/pmtvrqo page.addListener(start,function() { page.scrollTo(0,0,0); }); Am 13.09.2013 um 15:08 schrieb seema tg: Hi, In out application, for each page we have 2 methods defined , one is initialize() (which gets called only

Re: [qooxdoo-devel] question about list and qx.ui.mobile.list.renderer

2013-09-13 Thread rsantiagopaz
thank you very much Christopher -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-list-and-qx-ui-mobile-list-renderer-tp7584593p7584612.html Sent from the qooxdoo mailing list archive at Nabble.com.