Re: [qooxdoo-devel] Listview style assign error

2006-08-31 Thread Volker Pauli
Hi Sirichoke, On Fri, 2006-09-01 at 09:26 +0700, Sirichoke wrote: > Dear all, > > I always found the error same as in splitpane1.html > in test folder. > > When you drag horizontal split down, see the error on > the debug pane... > > What's the cause of this problems? this is a bug in the list

Re: [qooxdoo-devel] Yay! Splitters ...

2006-08-31 Thread Volker Pauli
Hi, On Thu, 2006-08-31 at 22:40 -0700, dperez wrote: > Hi Lycovian, > > I think they are a very recent addition. They weren't present in 0.6RC1. you are right. This is a first early shot. Don't use it in "real" applications. I hope I'll finished the whole thing next week. So please be patient.

Re: [qooxdoo-devel] Yay! Splitters ...

2006-08-31 Thread dperez
Hi Lycovian, I think they are a very recent addition. They weren't present in 0.6RC1. lycovian wrote: > > Now how do you use them? Examples Splitter1/2/3 under Test don't seem to > do anything. Anyone have a simple working example? > -- View this message in context: http://www.nabble.co

Re: [qooxdoo-devel] Linebreaks in QxTextArea

2006-08-31 Thread dperez
It works ok for me under IE6 and FF 1.5 junglist wrote: > > Hi community. > > Doing a getValue() on a QxTextArea returns the value as it should BUT > all the linebreaks are gone. :..( > > My software needs to store and display (display also in editable widgets) > larger amount of text someti

Re: [qooxdoo-devel] Probably important for new users:

2006-08-31 Thread dperez
Hi, It's a good habit to declare always using "var", to limit the scope of variables. alex.d wrote: > > Hi, > = Variable declaration = > > Be careful with the variable declaration especially in IE. This code > will work fine in Firefox: > > > liste = new qx.ui.form.List; > item =

[qooxdoo-devel] Listview style assign error

2006-08-31 Thread Sirichoke
Dear all, I always found the error same as in splitpane1.html in test folder. When you drag horizontal split down, see the error on the debug pane... What's the cause of this problems? How to fix that? Thanks. Sirichoke

[qooxdoo-devel] Umlauts

2006-08-31 Thread Florian Arndt
Hey there, the Umlaut in qooxdoo.org's demo/test section does not do anything (append strings to debug console or something). I'm using FF 1.5. What's wrong? Wbr, Florian - Using Tomcat but need to do more? Need to support

[qooxdoo-devel] Yay! Splitters ...

2006-08-31 Thread lycovian
Now how do you use them? Examples Splitter1/2/3 under Test don't seem to do anything. Anyone have a simple working example? -- View this message in context: http://www.nabble.com/Yay%21--Splitters-...-tf2199462.html#a6088937 Sent from the qooxdoo-devel forum at Nabble.com. --

[qooxdoo-devel] Updated some articles to 0.6

2006-08-31 Thread Sebastian Werner
Hi! just want let your know that I've updated these articles: * http://qooxdoo.org/documentation/user_manual/layout_manager * http://qooxdoo.org/documentation/user_manual/widget_visibility * http://qooxdoo.org/documentation/user_manual/color_and_border_objects to qooxdoo 0.6. Cheers, Sebastian

Re: [qooxdoo-devel] Linebreaks in QxTextArea

2006-08-31 Thread Ricardo Borillo
Hi,I load a lot of information in a TextArea widget and no line break is lost.Perhaps the data that you show in the TextArea is transformed if youstored this information in a database and then retrieve it. A character conversion can break some line breaks and so on... On 8/31/06, junglist <[EMAIL

[qooxdoo-devel] Linebreaks in QxTextArea

2006-08-31 Thread junglist
Hi community. Doing a getValue() on a QxTextArea returns the value as it should BUT all the linebreaks are gone. :..( My software needs to store and display (display also in editable widgets) larger amount of text sometimes so i urgently need a way to use simply textformating like linebreaks, t

Re: [qooxdoo-devel] Probably important for new users:

2006-08-31 Thread junglist
Hum, that would mean IE Javascript does not support global objects. I'm using IE and never had problems with that. Cheers, Jubei alex.d wrote: > > Hi, > = Variable declaration = > > Be careful with the variable declaration especially in IE. This code > will work fine in Firefox: >

[qooxdoo-devel] Introduce new tree compiler (as default)

2006-08-31 Thread Sebastian Werner
Hi qooxdoo community, another step forward to highly optimized applications based on qooxdoo: I would like to introduce the tree "compiler". The tree compiler is able to "compile" a syntax tree (generated by treegenerator.py which uses the tokenizer.py) back to optimized JavaScript code. In it'

[qooxdoo-devel] Probably important for new users:

2006-08-31 Thread Alex D.
Hi, = Variable declaration =   Be careful with the variable declaration especially in IE. This code will work fine in Firefox:   liste = new qx.ui.form.List; item = new qx.ui.form.ListItem(“Test”, null); liste.add(item);   But not in IE. You must use this instead:   var

Re: [qooxdoo-devel] QxKeyEvent Help

2006-08-31 Thread Alex D.
Hi, it seems to be a similar problem to the one i described in "List in Window in Window" topic. But in my app. the eventListener handler isn't called at all. Cheers, alex.d Hi , I m builiding application using Qooxdoo 0.5.3. In my application i have requrement  where I open QxWindow [Wi

[qooxdoo-devel] QxKeyEvent Help

2006-08-31 Thread Aparna Verma
Hi , I m builiding application using Qooxdoo 0.5.3. In my application i have requrement  where I open QxWindow [Window1]. This loads 1 form in Gridlayout Form holds a button to open new QxWindow [Window2]. On Click of button , it loads Qxlistview in window. Again to edit data from QxListview,

Re: [qooxdoo-devel] KeyCodes: 's' == 'F4'

2006-08-31 Thread Alex D.
Hi, Probably you guys can help me with my little problem. I have a number of textfields(approx. 50) which all have to respond to following events: 1) to "normal" keypress to search some data in the database 2) to "special" keys like "Enter", "f4".. to do some

Re: [qooxdoo-devel] List in Window in Window trouble

2006-08-31 Thread Alex D.
It seems to be a general problem: a textfield in the second window like this: var text = new qx.ui.form.TextField; text.addEventListener(qx.constant.Event.KEYPRESS, function(e){ this.debug(e.getKeyCode()); }); win2.add(text); will also produce no debug

Re: [qooxdoo-devel] Posted patch for bug 133

2006-08-31 Thread dperez
I have posted the patch to Bugzilla. dperez wrote: > > The bug relates to positioning of combobox popups. > -- View this message in context: http://www.nabble.com/Posted-patch-for-bug-133-tf2196068.html#a6077450 Sent from the qooxdoo-devel forum at Nabble.com.

[qooxdoo-devel] Posted patch for bug 133

2006-08-31 Thread dperez
The bug relates to positioning of combobox popups. -- View this message in context: http://www.nabble.com/Posted-patch-for-bug-133-tf2196068.html#a6077447 Sent from the qooxdoo-devel forum at Nabble.com. - Using Tomcat but

[qooxdoo-devel] List in Window in Window trouble

2006-08-31 Thread Alex D.
Hi, Sorry for mailing all too often O:-) , but i'm currently at a loss: I have following situation: two windows(win2 in win1) and a simple qx.ui.form.List with three Items in win2. The Problem is that the List in the second window doesn't respond to any key events because it is constant out of t

Re: [qooxdoo-devel] KeyCodes: 's' == 'F4'

2006-08-31 Thread Sebastian Werner
Alex D. schrieb: >> Alex D. schrieb: >>> Hi, >>> Probably you guys can help me with my little problem. I have a number >>> of textfields(approx. 50) which all have to respond to following events: >>> >>> 1) to "normal" keypress to search some data in the database >>> 2) to "special" keys like "E

Re: [qooxdoo-devel] KeyCodes: 's' == 'F4'

2006-08-31 Thread Alex D.
> Alex D. schrieb: >> Hi, >> Probably you guys can help me with my little problem. I have a number >> of textfields(approx. 50) which all have to respond to following events: >> >> 1) to "normal" keypress to search some data in the database >> 2) to "special" keys like "Enter", "f4".. to do som

Re: [qooxdoo-devel] List.js Error

2006-08-31 Thread Sebastian Werner
Thank you Alex. I've changed this part in SVN. Sebastian Alex D. schrieb: > Hi, > i found a little syntax error in List.js. Hier is the diff(also as > attachment): > > Index: List.js > === > --- List.js(revision 4027) > +++

Re: [qooxdoo-devel] KeyCodes: 's' == 'F4'

2006-08-31 Thread Sebastian Werner
Alex D. schrieb: > Hi, > Probably you guys can help me with my little problem. I have a number of > textfields(approx. 50) which all have to respond to following events: > > 1) to "normal" keypress to search some data in the database > 2) to "special" keys like "Enter", "f4".. to do some other

[qooxdoo-devel] List.js Error

2006-08-31 Thread Alex D.
Hi, i found a little syntax error in List.js. Hier is the diff(also as attachment): Index: List.js === --- List.js(revision 4027) +++ List.js(working copy) @@ -173,7 +173,7 @@ currentItem = items[i]; if (curren