Re: [qooxdoo-devel] celleditorfactory

2006-08-13 Thread dperez
I propose as a workaround to use a regular TextField control. When the mouse is clicked in the TextField, a popup Window appears with a list of possible values. Choon Whee wrote: > > I tried it and have the exact same error. 2 days of debugging yielded > nothing :( > > I've submitted a defect

Re: [qooxdoo-devel] Solution for: Long running disposer in firefox on page unload and the "stop unresponsive script" dialog

2006-08-13 Thread Sebastian Werner
Applied to SVN in legacy_0_5_x. Revision 3857. Cheers, Sebastian Christian Boulanger schrieb: > Priebe, Jason schrieb: >> Here's the corresponding patch against 3706 of 0.5.3. It requires >> patching QxObject.js and QxObjectCore.js. >> >> I saw a dramatic speedup when unloading a complex GUI.

Re: [qooxdoo-devel] QxTree in QxWindow

2006-08-13 Thread Sebastian Werner
Hi! I don't see any reason why this shouldn't work. Maybe you could send us a little demo (just a few lines of code) which show your problem. Thanks. Cheers, Sebastian Okan, Varol schrieb: > All, > > > > Is there no way to include a QxTree in a resizable QxWindow (or another > parent

Re: [qooxdoo-devel] Patch for QxTree.getSelectedElement() Bug

2006-08-13 Thread Sebastian Werner
Hi Christian, thank you for this patch. I've applied it to legacy_0_5_x and to our new trunk (old namespaces). Sebastian Christian Boulanger schrieb: > Hi, > > here's the patch for a small bug in QxTree.js: > > Index: > C:/Programme/xampp/htdocs/bibliograph/qooxdoo-0.5/source/script/widget

Re: [qooxdoo-devel] Drag & Drop Question 0.5.3

2006-08-13 Thread Sebastian Werner
Hi Christian, normally the behavior in 0.5.3 shouldn't be different than in 0.6 (later). The "enddrag" event will be fired on the source widget of the drag event. When completed successfully or when cancelled - it both cases. Cheers, Sebastian Christian Boulanger schrieb: > Hi, > > looking

[qooxdoo-devel] Filtering a listview?

2006-08-13 Thread Jon Fawcett
Can anyone think of a way to use a textfield as a filter for a listview? To match the text field on one of the columns and remove listview items that don't match. My specific example has a listview with 3000 rows pulled from a database. I am preloading it because of the time it takes to create.

Re: [qooxdoo-devel] Help with addProperty

2006-08-13 Thread Jon Fawcett
Thanks! I haven't tried your code yet, but this gives me a good place to start and your example seems straight forward. -Jon Jim Hunter wrote: I'm sorry that I am going to be able to assist you, but I may be missing something as I can't get to my work computer to get you definitive code sampl

[qooxdoo-devel] Drag & Drop Question 0.5.3

2006-08-13 Thread Christian Boulanger
Hi, looking at the source code for the code that handles the mouseup event: /*! Handle mouse up event. Normally this finalize the drag and drop event. */ proto._handleMouseUp = function(e) { // Return if dragCache was not filled before if (!this._dragCache) { return; }; if (this._dra

[qooxdoo-devel] Patch for QxSelectionManager

2006-08-13 Thread Christian Boulanger
Christian Boulanger schrieb: > I hope in 0.6 you are going to normalize the API names a bit more, in > 0.5 there is getSelection(), getSelectedItem(), getSelectedElement(), > that is a bit confusing! And, as others have said before, please > dispatch all events and provide hooks to all main get

Re: [qooxdoo-devel] QXRequest error between 0.5.3 and renderer

2006-08-13 Thread Alexander Braitschev
Hi, you are missing the closing quote after "login.php". Greets, Alex Von: [EMAIL PROTECTED] im Auftrag von Jon Fawcett Gesendet: Mi 09.08.2006 20:44 An: qooxdoo Development Betreff: [qooxdoo-devel] QXRequest error between 0.5.3 and renderer I just built th

[qooxdoo-devel] Patch for QxTree.getSelectedElement() Bug

2006-08-13 Thread Christian Boulanger
Hi, here's the patch for a small bug in QxTree.js: Index: C:/Programme/xampp/htdocs/bibliograph/qooxdoo-0.5/source/script/widgets/QxTree.js === --- C:/Programme/xampp/htdocs/bibliograph/qooxdoo-0.5/source/script/widgets/QxTree.js