AW: RE: [qooxdoo-devel] IE memory leaks

2006-02-08 Thread info
> > > >Hi Sebastian, > >> Looks interesting. I will try to call this method after each "dispose" >> call. Can you send the urls of the pages where you have found this? > >http://blogs.msdn.com/ericlippert/archive/2003/09/17/53038.aspx > >Just seach on google, heaps of references out there. > >> QxG

RE: [qooxdoo-devel] IE memory leaks

2006-02-08 Thread Simon Cope
Hi Sebastian, > Looks interesting. I will try to call this method after each "dispose" > call. Can you send the urls of the pages where you have found this? http://blogs.msdn.com/ericlippert/archive/2003/09/17/53038.aspx Just seach on google, heaps of references out there. > QxGalleryList and

Re: [qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: [EMAIL PROTECTED] schrieb: Sebastian Werner <[EMAIL PROTECTED]> writes: Daniel Dumitrescu schrieb: I need to differentiate the "click" and "dblclick" events on the same QxAtom widget. I saw that on "dblclick" mouse event the "click" event is generated twice and i ne

Re: [qooxdoo-devel] IE memory leaks

2006-02-08 Thread Sebastian Werner
Simon Cope schrieb: Hello Sebastian, Hi Simon, This may not be relevent to the IE memory problems in qooxdoo. I did some research yesterday and found the following undocument global method in IE: CollectGarbage(); Apparently this forces the IE GC to run. Looks interesting. I will try t

[qooxdoo-devel] IE memory leaks

2006-02-08 Thread Simon Cope
Hello Sebastian, This may not be relevent to the IE memory problems in qooxdoo. I did some research yesterday and found the following undocument global method in IE: CollectGarbage(); Apparently this forces the IE GC to run. Unfortunately this will NOT solve all the memory problems in IE. Wh

Re: [qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread chris
> [EMAIL PROTECTED] schrieb: >> Sebastian Werner <[EMAIL PROTECTED]> writes: >> >>> Daniel Dumitrescu schrieb: I need to differentiate the "click" and "dblclick" events on the same QxAtom widget. I saw that on "dblclick" mouse event the "click" event is generated twice and i nee

Re: [qooxdoo-devel] QxSplitPane

2006-02-08 Thread Christian Boulanger
Yes, a splitPane would be definitely welcome! Once it is there, I will switch to RENDERER now that QxBuilder is there! Will it support both horizontal and vertical split panes? I want to build a thunderbird-like interface with tree on the left, listview and detailview on the right with two spli

Re: [qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: Sebastian Werner <[EMAIL PROTECTED]> writes: Daniel Dumitrescu schrieb: I need to differentiate the "click" and "dblclick" events on the same QxAtom widget. I saw that on "dblclick" mouse event the "click" event is generated twice and i need to have different behavio

Re: [qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread Derrell . Lipman
Sebastian Werner <[EMAIL PROTECTED]> writes: > Daniel Dumitrescu schrieb: >> I need to differentiate the "click" and "dblclick" events on the same >> QxAtom widget. I saw that on "dblclick" mouse event the "click" event is >> generated twice and i need to have different behavior on these two mouse

Re: [qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread Sebastian Werner
Daniel Dumitrescu schrieb: Hello, guys I need to differentiate the "click" and "dblclick" events on the same QxAtom widget. I saw that on "dblclick" mouse event the "click" event is generated twice and i need to have different behavior on these two mouse events. There is a special dblclick

Re: [qooxdoo-devel] adding items to QxListView with addData does not work (head)

2006-02-08 Thread Sebastian Werner
Diego Cibils schrieb: I really can't switch right now to 0.2 because of the time I have to finish the task. How can I recreate the list in runtime ? can I delete the object and create a new one ? This would be my idea of how you could solve it. Dispose the old and create a new one. Sebast

Re: [qooxdoo-devel] bugs in layout system

2006-02-08 Thread Sebastian Werner
Stanislav Ievlev schrieb: On Tue, Feb 07, 2006 at 08:38:51PM +0100, Sebastian Werner wrote: Stanislav Ievlev schrieb: Greetings! Layout engine doesn't take spacing values into account during widget size calculation when widget geometry is defined using percents. The spacing is outside the boun

Re: [qooxdoo-devel] adding items to QxListView with addData does not work (head)

2006-02-08 Thread Diego Cibils
I really can't switch right now to 0.2 because of the time I have to finish the task.How can I recreate the list in runtime ?can I delete the object and create a new one ? On 08/02/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: QxListView can only be re-created completly in this version of qooxdo

[qooxdoo-devel] click and dblclick events [RENDERER]

2006-02-08 Thread Daniel Dumitrescu
Hello, guys I need to differentiate the "click" and "dblclick" events on the same QxAtom widget. I saw that on "dblclick" mouse event the "click" event is generated twice and i need to have different behavior on these two mouse events. Can somebody help me with this issue? Thank you very much

AW: [qooxdoo-devel] adding items to QxListView with addData does not work (head)

2006-02-08 Thread info
QxListView can only be re-created completly in this version of qooxdoo. Please switch to renderer to get a better working version of QxListView.Sebastian  Hi,Im doing this to add items to a QxListView (already added to the clientdocument)  list.addData ({ col1: "1", col2: "2", col3: "3", col4: "5"}

[qooxdoo-devel] adding items to QxListView with addData does not work (head)

2006-02-08 Thread Diego Cibils
Hi,Im doing this to add items to a QxListView (already added to the clientdocument)  list.addData ({ col1: "1", col2: "2", col3: "3", col4: "5"});it DOES work if I add the items before the qxListView is added to the clientDocument. but after it's added, it does noting! No script errors, nothing!Im

Re: [qooxdoo-devel] bugs in layout system

2006-02-08 Thread Stanislav Ievlev
On Tue, Feb 07, 2006 at 08:38:51PM +0100, Sebastian Werner wrote: > Stanislav Ievlev schrieb: > >Greetings! > > > >Layout engine doesn't take spacing values into account during widget size > >calculation when widget geometry is defined using percents. > > The spacing is outside the boundaries of a

Re: [qooxdoo-devel] drag & drop event [RENDERER]

2006-02-08 Thread Daniel Dumitrescu
Hello Sebastian i will do like putting event listener to every cell in the QxGridLayout widget Thank you DanielOn 2/7/06, Sebastian Werner <[EMAIL PROTECTED]> wrote: Daniel Dumitrescu schrieb:> Hello guys.>> I'm facing a new problem while trying to handle the "drag & drop" events.> I have a QxG