Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Andrea Del Signore
yes! I lost almost an hour overlooking this problem, I forgot that key in the config :) Thanks for your help, Andrea On Wed, Oct 30, 2013 at 6:44 PM, Richard Sternagel < richard.sterna...@1und1.de> wrote: > Hi Andrea, > > regarding your "config.json": > > You are using the "packages" config

Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Richard Sternagel
Hi Andrea, regarding your "config.json": You are using the "packages" config key [1] and its subkey "i18n-as-parts" set to "true". For this subkey the manual [2] states: 'So far, so good. With the config key set to true, this is the point where the application developer has to take over. The a

Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Andrea Del Signore
Ooops and these also: /** * Document Plugin * * Dependencies: * * @use(qx.bom.Font) * * * @use(qx.ui.basic.Atom) * * @use(qx.ui.container.Composite) * @use(qx.ui.container.Stack) * * @use(qx.ui.form.TextField) * @use(qx.ui.form.DateField) * @use(qx.ui.form.Button) * @use(qx.ui.form.CheckBox) * * @

Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Andrea Del Signore
Sorry I forgot to mention some relevant additional details. Since this project is a mix of qooxdoo and typescript, most of the usual qooxdoo machinery to resolve dependencies can't be used because the generator doesn't catch all the classes I use from typescript of course. So in my application cl

Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Andrea Del Signore
Here the requested informations, I also tried to remove the cache directory and regenerate everything but without success. Thanks, Andrea >generate.py info Initializing: OneWeb -

Re: [qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Richard Sternagel
Hi Andrea, can you please provide the output of "generate.py info" and your content of the "config.json"? Regards Richard -- Android is increasing in popularity, but the open development platform that developers love is

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread thron7
On 10/30/2013 05:21 PM, Dietrich Streifert wrote: > Hi Richard, > > Thank you for the hint! > > I've managed to install and use jshint which gave the following output: > > table.js: line 109, col 61, Extra comma. (it breaks older versions of IE) > > Now I have to get rid of those "Mixed spaces and

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread Dietrich Streifert
Hi Richard, Thank you for the hint! I've managed to install and use jshint which gave the following output: table.js: line 109, col 61, Extra comma. (it breaks older versions of IE) Now I have to get rid of those "Mixed spaces and tabs." warnings which currently pollute the output of jshint.

[qooxdoo-devel] Problem with DateField qooxdoo 3.0.1

2013-10-30 Thread Andrea Del Signore
Hi all, I've a litte problem with qx.ui.form.DateField, it shows all my data as "strange" unformatted string like this: 2?1?_1cldr_am?2_???0cldr_am?_021??0 I tried to follow the instructions in this old thread [1], but without results. What's happening? Thanks, Andrea [1] http://www.mail-arch

Re: [qooxdoo-devel] Problem setting focus to a widget

2013-10-30 Thread Jeroen Smit
Hi Richard, Thank you and I submitted http://bugzilla.qooxdoo.org/show_bug.cgi?id=7835 Unfortunately my real code is not as straightforward as the example I provided because my window doesn't know anything about the controls in it but I get the idea. Best regards, Jeroen -Original Messag

Re: [qooxdoo-devel] Problem setting focus to a widget

2013-10-30 Thread Richard Sternagel
Hi Jeroen, you can use the "appear" event as workaround: --- 8< --- win.addListener("appear", function() { textField.focus(); }); --- >8 --- The playground sample: http://tinyurl.com/lcy4txy Can you please file a bug for this? Regards Richard ---

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread Richard Sternagel
Hi Dietrich, if you need a solution today you could also run js[hl]int on your code (e.g. via Node.js as globally installed package). They are already able to catch exactly that case: http://jslinterrors.com/extra-comma/ More on those tools: http://www.jshint.com http://www.jslint.com Regards

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread Dietrich Streifert
Hi Thomas, Well it seems learning never stops! Thank you (again) for your detailed explanation. Here is the submitted bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=7834 Regards Dietrich Am 30.10.2013 14:13, schrieb thron7: > Hi Dietrich, > > > "Dangling commas" in arrays are not only permit

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread thron7
Hi Dietrich, On 10/30/2013 01:01 PM, Dietrich Streifert wrote: > Hi all, > > I've been running into an error situation with an accidently forgotten > comma behind the last element of an array initialization. Something like: > > var a = [ > { name: 'bla' }, > { name: 'blu' }, > ]; > > c

[qooxdoo-devel] Problem setting focus to a widget

2013-10-30 Thread Jeroen Smit
Hi In 3.0.1 I have trouble setting focus to a widget where I previously didn't in 1.4.1 As an example some code below ("focus issue regular window") in which I can see the same issue in the playground of the current release. In code I can see the following happen: -I focus my control -

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread Dietrich Streifert
Sorry should be: I'm frequently using "generate.py lint" on my project to find code flaws like this, but unfortunately the linter in the toolchain did not detect the false code. Am 30.10.2013 13:01, schrieb Dietrich Streifert: > I'm frequently using "generate.py on my project" to find code flaw

[qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-30 Thread Dietrich Streifert
Hi all, I've been running into an error situation with an accidently forgotten comma behind the last element of an array initialization. Something like: var a = [ { name: 'bla' }, { name: 'blu' }, ]; console.log(a.length); If this code is executed in IE8 you get an array length of 3

Re: [qooxdoo-devel] Drag&drop not enabled with right mouse in 3.0.1

2013-10-30 Thread thron7
On 10/30/2013 09:01 AM, Jeroen Smit wrote: Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=7828 thanks. I will fix this in my local copy for now. You may want to look at qx.Class.patch [1], which allows you to maintain your patches outside the framework code proper. T. [1] http://

[qooxdoo-devel] Răspuns: How can I add a table to a mobile page?

2013-10-30 Thread tedi tedi
Thank you, Cristopher, I think I will go with the qx.mobile.embed.Html widget. I didn't know about this qx.bom.Template.render class. It will make my code a lot easier to read :-). I did see your stackoverflow post but I had a hard time after this step: "You may use qx.ui.mobile.list.renderer.D

Re: [qooxdoo-devel] Drag&drop not enabled with right mouse in 3.0.1

2013-10-30 Thread Jeroen Smit
Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=7828 I will fix this in my local copy for now. Best regards, Jeroen From: thron7 [mailto:thomas.herchenroe...@1und1.de] Sent: dinsdag 29 oktober 2013 19:55 To: qooxdoo Development Subject: Re: [qooxdoo-devel] Drag&drop not enabled with right mouse