[qooxdoo-devel] Shortcut keys per widget

2007-07-06 Thread johnl
Hello. I have an application with a number of text fields, any of which could be open for editing at a given time. I'd like the user to be able to press 'ctrl-s' to save, but I can't figure out how to make this apply only to the active widget. Does anyone know how to do this? Thanks, David

[qooxdoo-devel] Where are the demos?

2007-07-06 Thread Hugh Gibson
Looking at http://qooxdoo.org/demo it's not immediately obvious how to get to the demos. The headings are hotlinks, but if you don't explore the page it isn't immediately obvious. How about a link underneath each section taking you to the right page? Help your potential new users as much as possi

[qooxdoo-devel] Online Showcase demo problem in IE7

2007-07-06 Thread Hugh Gibson
Using IE 7 and my shiny new 8MB internet connection I went to http://demo.qooxdoo.org/current/showcase/ and got auto-loaded to http://demo.qooxdoo.org/current/showcase/#Form Clicked on back and got this: --- Error --- A Runtime Error has occurred.

Re: [qooxdoo-devel] qxtransformer on its way

2007-07-06 Thread frederic
Hi Christian and Siarhei, The development of qxTransformer seems stopped since few weeks (regarding SVN activity). What is the lastest status ? a production release soon based on 0.7 ? qxTransformer will be our first solution to increase our UI design productivity using RAD tool. Regards frederic

[qooxdoo-devel] Table Column Widths

2007-07-06 Thread Praveen Ray
Hello All. Newbie here. Trying to create a Table which fills 100% of it's parent's width. Here's my code: ... var tbl_model = new qx.ui.table.model.Simple(); tbl_model.setColumns(['column1','column2']); tbl_model.addRows([ [ ... ]] ); var tbl = new qx.ui.table.Table(tbl_model); tbl.setHeight('

Re: [qooxdoo-devel] Sorting Columns in TreeVirtual

2007-07-06 Thread Derrell Lipman
On 7/6/07, Christian Boulanger <[EMAIL PROTECTED]> wrote: > Duh! Derrel, of course you're right. I have the situation that there are > only nodes so that the tree resembles a table, so I didn't even think of > that. Stupid me. Thanks for the clarification... An interesting thought... With some wo

Re: [qooxdoo-devel] Sorting Columns in TreeVirtual

2007-07-06 Thread Christian Boulanger
Duh! Derrel, of course you're right. I have the situation that there are only nodes so that the tree resembles a table, so I didn't even think of that. Stupid me. Thanks for the clarification... C. Derrell Lipman schrieb: > On 7/6/07, Christian Boulanger <[EMAIL PROTECTED]> wrote: > >> Hi, >

Re: [qooxdoo-devel] Sorting Columns in TreeVirtual

2007-07-06 Thread Derrell Lipman
On 7/6/07, Christian Boulanger <[EMAIL PROTECTED]> wrote: > Hi, > > I couldn't find this in the API: is sorting columns by clicking on the > column header implemented for TreeVirtual - I thought it would since it > uses the Table class behind the scenes - but I didn't find a way to turn > on this b

Re: [qooxdoo-devel] Sorting Columns in TreeVirtual

2007-07-06 Thread Tobias Koller (GERMO GmbH)
I think you should check qx.ui.treevirtual.SimpleTreeDataModel Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Christian Boulanger Gesendet: Freitag, 6. Juli 2007 19:17 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] Sor

[qooxdoo-devel] Sorting Columns in TreeVirtual

2007-07-06 Thread Christian Boulanger
Hi, I couldn't find this in the API: is sorting columns by clicking on the column header implemented for TreeVirtual - I thought it would since it uses the Table class behind the scenes - but I didn't find a way to turn on this behaviour through the API. Thanks, Christian ---

Re: [qooxdoo-devel] this[setter[prop]] is not a function

2007-07-06 Thread Philipp Wabinski
Thanks for your replies, I found the error by my self. I had a setting named "resizeable" for some internal windows. Without that everything works fine :) Sebastian Werner wrote: > > We thought is is too strict because this also affects typos and > non-critical stuff. Currently it is displa

Re: [qooxdoo-devel] A possible bug in IE6 with “ke ypress” event handling in TextField

2007-07-06 Thread Fabian Jakobs
Dioc schrieb: > Hello, > > I found a problem in Internet Explorer 6 related to "keypress" event > handling. > I have an instance of qx.ui.form.TextField and attach to it the "keypress" > event handler that should process "Enter" key pressing. > The problem is "keypress" event is fired twice for "En

Re: [qooxdoo-devel] qx.io.remote.Request doesn't work in synchronous mode properly in 0.7 Qx.

2007-07-06 Thread Fabian Jakobs
Fabian Jakobs schrieb: > Derrell Lipman schrieb: > >> On 7/5/07, Sergei Kolomiets <[EMAIL PROTECTED]> wrote: >> >> >>> Hi! >>> >>> After migrating from 0.6.6 version to 0.7 I found, that synchronous requests >>> don't work in IE 6. >>> Code line, placed after req.send() executes before t

[qooxdoo-devel] A possible bug in IE6 with “key press” event handling in TextField

2007-07-06 Thread Dioc
Hello, I found a problem in Internet Explorer 6 related to "keypress" event handling. I have an instance of qx.ui.form.TextField and attach to it the "keypress" event handler that should process "Enter" key pressing. The problem is "keypress" event is fired twice for "Enter" key. There is not suc

Re: [qooxdoo-devel] this[setter[prop]] is not a function

2007-07-06 Thread Sebastian Werner
We thought is is too strict because this also affects typos and non-critical stuff. Currently it is display with a warning in the debug log. I think this is enough for the moment. Sebastian Derrell Lipman schrieb: > On 7/6/07, Sebastian Werner <[EMAIL PROTECTED]> wrote: >> It seems that a pro

Re: [qooxdoo-devel] this[setter[prop]] is not a function

2007-07-06 Thread Derrell Lipman
On 7/6/07, Sebastian Werner <[EMAIL PROTECTED]> wrote: > It seems that a property you use in a map-style with set({}) is not > found. There is a check for this in the source version which should > report errors to the console. Please double-check if there are no such > errors. Sebastian, would it

Re: [qooxdoo-devel] this[setter[prop]] is not a function

2007-07-06 Thread Sebastian Werner
It seems that a property you use in a map-style with set({}) is not found. There is a check for this in the source version which should report errors to the console. Please double-check if there are no such errors. Sebastian Philipp Wabinski schrieb: > Hi, > > I updated from 0.6.6 to 0.7...

Re: [qooxdoo-devel] A possible bug in IE6 with “ke ypress” event handling in TextField

2007-07-06 Thread Sebastian Werner
Hey Dioc, can you please open a bug report with major severity. Thanks. Sebastian Dioc schrieb: > Hello, > > I found a problem in Internet Explorer 6 related to "keypress" event > handling. > I have an instance of qx.ui.form.TextField and attach to it the "keypress" > event handler that shoul

Re: [qooxdoo-devel] qx.util.format.NumberFormat parse accepts non digit and multiple separators in qx 0.7

2007-07-06 Thread Fabian Jakobs
Dietrich Streifert schrieb: > Opened a bug for this issue: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=534 > > And added a test tor testrunner. Great, thank you best, Fabian - This SF.net email is sponsored by DB2 Express D

Re: [qooxdoo-devel] qx.util.format.NumberFormat parse accepts non digit and multiple separators in qx 0.7

2007-07-06 Thread Dietrich Streifert
Opened a bug for this issue: http://bugzilla.qooxdoo.org/show_bug.cgi?id=534 And added a test tor testrunner. Fabian Jakobs schrieb: Dietrich Streifert schrieb: Hello List, I'm in need of parsing numbers (integers and floats) and tried this with the qx.util.format.NumberFormat parse me

Re: [qooxdoo-devel] Problem with syncronous RPC call on IE7

2007-07-06 Thread Carsten Harnisch
Yep. We are using 0.7 and it seems to be related to the same problem. I removed the "patch" in XmlHttpTransport.js (near "http://bugzilla.qooxdoo.org/show_bug.cgi?id=190";) This will solve the problem that sync request are not running in the syncronous way. Seems that the "extra" setTimeout call