[qooxdoo-devel] Proposed patch

2011-11-25 Thread David Charbonnier
Hi, Could you take a look at two minor (but critical for us) 'enhancements' for qooxdoo : 1/ This one should not have side effect and we use it a lot on sava for example. https://github.com/oxys-net/qooxdoo/commit/6f65350f1c5b170026a8a5d755bad66cc79c1971 The code requiring that is very compl

[qooxdoo-devel] A wish for contribution demos

2011-11-25 Thread Stefan Andersson
We would like to see either a changed contribution demo browser for both RIAs and Mobile apps or a new contribution demo browser for Mobile apps. Can this be fixed? Stefan -- Al

Re: [qooxdoo-devel] Change in Array

2011-11-25 Thread Benjamin Dreux
Maybe i found where the issue is. In the qx.ui.list.List._onModelChange:function(e){ this.__buildUpLookupTable(); this._applyDefaultSelection(); } And in the method __buildUpLookupTable there is a method call this._updateSelection(); Since in _onModelChange there is an update of the selectio

Re: [qooxdoo-devel] Change in Array

2011-11-25 Thread Benjamin Dreux
Hi I was searching why this loops occure and i found that qx/ui/virtual/selection/MModel.js/_replaceSelection In this method there is a splice on the selection which then trigger a _onChangeSelection I've tryed to follow the execution. During the loop, the list's model get a null value for the fi

Re: [qooxdoo-devel] UploadMgr with different parameters for different files

2011-11-25 Thread omrihar
Sorry for flooding this message with repeated replies, but I hope it will be useful for someone else as well. So I set autoUpload to false, multiple to false and I would like to upload only one file at a time, and to allow the user to regret having selected a specific file. For this end I save the

Re: [qooxdoo-devel] New release of qxe widget: Clock and DigitalClock

2011-11-25 Thread Stefan Andersson
Hej Daniel! Thanks for taking notice! We are changing a lot of things and preparing for adding another 10 widgets before the release of 1.6 and the errors have occurred due to that. Please, bare with it and we will fix it soon to be consistent for those three widgets. Stefan

Re: [qooxdoo-devel] slowdown the browser?

2011-11-25 Thread Daniel Wagner
There's the terminate method: http://demo.qooxdoo.org/current/apiviewer/#qx.application.AbstractGui~terminate But that's not where you should dispose your objects. As Marc said, the class that creates them should take care of that in the destructor. Regards, Daniel On 11/24/2011 09:26 PM, smis

Re: [qooxdoo-devel] UploadMgr with different parameters for different files

2011-11-25 Thread omrihar
Inspecting the code and noticing that I can simply use addParam also to modify a parameter (it simply uses this.__params[key] = value to set the parameter). However I would recommend perhaps adding support for file-specific params, and also support for removing a parameter. And perhaps making the

[qooxdoo-devel] UploadMgr with different parameters for different files

2011-11-25 Thread omrihar
Hi all, I'm trying to use the UploadMgr contribution to upload (possibly multiple) files to the server. I am using web2py as the back-end which automatically handles the upload, renames the files safely and stores the data related to the file in a database. I use the addParam method to send to we

Re: [qooxdoo-devel] New release of qxe widget: Clock and DigitalClock

2011-11-25 Thread Daniel Wagner
Hi Stefan, the contrib demos are published every Friday, just like the framework demos. Expect to see them online in a few hours. BTW, I just generated the qxe demos to see your new contribs in action and noticed some of them throw exceptions at startup: Busy Uncaught TypeError: Cannot read pr

Re: [qooxdoo-devel] slowdown the browser?

2011-11-25 Thread Marc Puts
No event that I know of, but the destructors of all your objects *will* be called. On 11/24/2011 09:26 PM, smisonli...@googlemail.com wrote: > is their any event thats appear on a app reload, so i can use this > clearup garbage > > qx.core.ObjectRegistry.shutdown(); > > ? > >> Sounds like your ap