[qooxdoo-devel] How to set qx.debug for build version in qooxdoo 1.5 ?

2011-07-05 Thread philnz
Hello all, The debug version of my app is deployed to a web server. I use: generate.py build -m OPTIMIZE:[] and then zip the "build" directory. Very nice. I am trying to enable the console and debug messages by setting qx.debug in the environment. I tried adding: window.qx = { $$environment

Re: [qooxdoo-devel] user inputs

2011-07-05 Thread John de la Garza
On Mon, Jul 4, 2011 at 12:37 AM, Peter Schneider wrote: > Hi John, > > ever tried contributions? The "dialog"[1] contribution is a good example for > the things you do/need. > To see what it looks like or can provide to you, try the > contrib-demobrowser[2] > > Regrads, >  Peter > Looks like a g

Re: [qooxdoo-devel] user inputs

2011-07-05 Thread John de la Garza
On Mon, Jul 4, 2011 at 12:07 AM, Christian Hagendorn wrote: > I think in your case you should use a qx.ui.window.Window to get the > missing user input (maybe as modal window). > > Cheers, > Ch thanks, I was thinking this was the case, ---

Re: [qooxdoo-devel] removeListener vs removeListenerById

2011-07-05 Thread Stefan Volbers
Someone else wanna vote? It's http://bugs.qooxdoo.org/show_bug.cgi?id=5328 Greetings, Stefan On 05.07.2011 07:58, Mustafa Sak wrote: > I will post an Enhancement. Maybe the devs give it a chance. ;) > > Regards Sak -- A

Re: [qooxdoo-devel] Enhancement: post request

2011-07-05 Thread Mustafa Sak
Hi Derrell, but I meant to make an ordinary post request like formulars do. Not using any ajax request. Sometimes you have to jump to an another webpage or even open a new window/tab. I need this peace of code for my qx.application.Inline project. SAKsystems Inh. Mustafa Sak Varre

Re: [qooxdoo-devel] after Destroy can't recreate an object

2011-07-05 Thread Daniel Wagner
On 07/05/2011 03:13 PM, Simone Pandolfo wrote: > Hi Daniel, > > Thank you, your suggestion is very interesting. > About the reuse of objects, there is a way for reset to default all the > widget? i see in the api viewer different reset function, there is one > for revert to the init status the wi

Re: [qooxdoo-devel] Enhancement: post request

2011-07-05 Thread Derrell Lipman
On Tue, Jul 5, 2011 at 11:01, Mustafa Sak wrote: > ** ** > > Hi list, > > ** ** > > what do you think? Would it be useful to have a function at qx to send post > request? > qx.io.remote.Request can be used to issue a POST request. That's how RPC works. Just specify "POST" as the second param

[qooxdoo-devel] Enhancement: post request

2011-07-05 Thread Mustafa Sak
Hi list, what do you think? Would it be useful to have a function at qx to send post request? postToUrl : function(url, params, newWindow) { var form = document.createElement('form');

Re: [qooxdoo-devel] upgrading an old version...

2011-07-05 Thread thron7
Ingrid, it all hinges on the Python version. This one: > "Traceback (most recent call last): >File "/opt/qooxdoo-1.4.1-sdk/tool/bin/generator.py", line 27, in ? > from generator.Generator import Generator >File "/opt/qooxdoo-1.4.1-sdk/tool/pylib/generator/Generator.py", line 1175 >

Re: [qooxdoo-devel] Calendar localization.

2011-07-05 Thread Port
All work correct, I just forgot to add locale into config. Thanks a lot. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Calendar-localization-tp6549217p6549936.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] upgrading an old version...

2011-07-05 Thread Ingrid Lohmann
Hi all, and thank you for the quick and targeted help. The hints and link were useful. I was successful in upgrading the application from 0.8.3 to 1.0. Although I got tons of error messages such as "Unknown global symbol referenced: chooser (newversion.Application:294)" ... I got the app running

Re: [qooxdoo-devel] Calendar localization.

2011-07-05 Thread thron7
On 07/05/2011 02:14 PM, Port wrote: > I wrote: > > qx.locale.Manager.getInstance().getLocale() > > and got "ru". But all words are in English) Cannot confirm. I just did a small gui app, adding the DateChooser, adding 'ru' to LOCALES in config.json, run a generate.py source, and changing the l

Re: [qooxdoo-devel] after Destroy can't recreate an object

2011-07-05 Thread Simone Pandolfo
Hi Daniel, Thank you, your suggestion is very interesting. About the reuse of objects, there is a way for reset to default all the widget? i see in the api viewer different reset function, there is one for revert to the init status the widget? In another project i'm creating a parser that create

Re: [qooxdoo-devel] after Destroy can't recreate an object

2011-07-05 Thread Daniel Wagner
Hi Simone, your code fails because when you destroy the Window, it destroys its children, including the ColorSelector. Then on the second button press, you're trying to add the disposed selector to the new Window which causes the exception. So a quick fix would be to move the ColorSelector ins

Re: [qooxdoo-devel] Calendar localization.

2011-07-05 Thread Port
I wrote: qx.locale.Manager.getInstance().getLocale() and got "ru". But all words are in English) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Calendar-localization-tp6549217p6549492.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Calendar localization.

2011-07-05 Thread Daniel Wagner
Hi, DateChooser automatically uses the date format, month/day names etc. of the application's locale. Is that not enough for your use case? Regards, Daniel On 07/05/2011 12:50 PM, Port wrote: > Hello. > > How to localize DateChooser? > > Thanks. > > -- > View this message in context: > http://

[qooxdoo-devel] Calendar localization.

2011-07-05 Thread Port
Hello. How to localize DateChooser? Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Calendar-localization-tp6549217p6549217.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Al

Re: [qooxdoo-devel] How do I locate qx.ui.form.TextField without using child strategy?

2011-07-05 Thread Daniel Wagner
On 07/04/2011 09:17 PM, Vinod wrote: > Thanks much Daniel. > > I am little worried here to set either seleniumId or html ID as we have > thousands of widgets used in the application. I guess setting ID would be > better option. But, I am still looking for other options without setting > IDs. > >