Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-16 Thread Dietrich Streifert
Hi Simon, very interesting results! Did you try leaving the page (eg. by calling about:blank)? Is the memory then released? As I understood IE does some part of its garbage collection just on page change. So maby this memory is not released until the page changes. It would also be of inter

[qooxdoo-devel] Possible bug in qx.ui.window.Window.dispose()...

2006-10-16 Thread Simon Bull
Hi All, I have noticed that some events that are added in Window's constructor are not removed in Window.dispose(). They are: // // EVENTS: WINDOW // ***

[qooxdoo-devel] Possible bug in qx.ui.form.Button constructor...

2006-10-16 Thread Simon Bull
Hi All, I've noticed that the constuctor of qx.ui.form.Button adds some event listeners without "this" as a 3rd argument: // // MOUSE EVENTS //

[qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-16 Thread Simon Bull
Hi All, I've built a simple Qx test case (see attached) that creates and disposes n many instances of a selected widget type. This test enables us to observe how much memory is allocated by new() and freed by dispose() for each widget type. I've used this test to quantify memory usage of most

[qooxdoo-devel] newbie question about iterator the tree nodes element

2006-10-16 Thread Wenhua.Li
Hi,folks Can anyone tell me how can I iterator the treenodes(treefiles or treefolders) in the tree/treefullcontrol compoments? Thks Edmond Lee - Using Tomcat but need to do more? Need to support web services, security? Get s

[qooxdoo-devel] Table: displaying cell data which exceeds cell width

2006-10-16 Thread Derrell . Lipman
I have a table with two columns. The second column can have arbitrarily long data. If the data happens to be longer than whatever width I assign to the field, it is not currently possible to view the remainder of the field. I am looking for options to remedy this situation. Possibilities that I

Re: [qooxdoo-devel] globalCursor

2006-10-16 Thread Dan Fillpot
setTimeout(function(){qx.ui.core.ClientDocument.getInstance().setGlobalCursor("wait");},0); should work also Jim Hunter wrote: I just saw your previous post about flushGlobalQueues and I have found in recent build, this call does nothing unless you pass in true as the parameter (like my e

Re: [qooxdoo-devel] Variableoptimizer and global scope

2006-10-16 Thread Alessandro Sala
Hello Sebastian, It seems you was right. I've corrected the part and recovered it to copy the lists. So hopefully this is OK now. Finally :) Yes, now it's OK. Anyway thinking again about your idea of not copying the scope and using an offset, and combining it with the need to pass the full scop

Re: [qooxdoo-devel] globalCursor

2006-10-16 Thread Jim Hunter
I just saw your previous post about flushGlobalQueues and I have found in recent build, this call does nothing unless you pass in true as the parameter (like my example below). I was not seeing any difference between using the flush command and not using it until I added the true parameter, now it

Re: [qooxdoo-devel] globalCursor

2006-10-16 Thread Alex D.
I've tried it's already ;-)(was the first i did) - it doesn't work. Right after you change the cursor, issue the following command: qx.ui.core.Widget.flushGlobalQueues(true); This should do the trick. Jim On 10/16/06, Alex D. <[EMAIL PROTECTED]> wrote:

Re: [qooxdoo-devel] globalCursor

2006-10-16 Thread Alex D.
I've tried it's already ;-)(was the i did) - it doesn't work. Right after you change the cursor, issue the following command: qx.ui.core.Widget.flushGlobalQueues(true); This should do the trick. Jim On 10/16/06, Alex D. <[EMAIL PROTECTED]> wrote: Hi folks, sorry for t

Re: [qooxdoo-devel] Modification of property "maximum" failed

2006-10-16 Thread dperez
This error happens in: qx.renderer.layout.VerticalBoxLayoutImpl.computeChildrenFlexHeight() at this line: qx.Proto.computeChildrenFlexHeight = function() { if(this._childrenFlexHeightComputed||!this.getEnableFlexSupport()) dperez wrote: > > Hi community, > > When I call this: >var new

Re: [qooxdoo-devel] globalCursor

2006-10-16 Thread Jim Hunter
Right after you change the cursor, issue the following command:qx.ui.core.Widget.flushGlobalQueues(true);This should do the trick.JimOn 10/16/06, Alex D. <[EMAIL PROTECTED]> wrote: Hi folks, sorry for the traffic but i have another issue that doesn't work: i have a button that do some fil

Re: [qooxdoo-devel] Modification of property "maximum" failed

2006-10-16 Thread dperez
Thanks Til, I have opened bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=192, and entered more findings. Til Schneider wrote: > > This is not a known bug. Can you open a bug report including a small > test case and a stack trace? > -- View this message in context: http://www.nabble.com/M

[qooxdoo-devel] Infinite loop in flushGlobalQueues()?

2006-10-16 Thread dperez
Hi, I have an AJAX event that adds widgets to a container, and the calls qx.ui.core.Widget.flushGlobalQueues() The problem is that FF 1.5 asks me if I want to stop a long running script. If I answer no after 5 seconds, I'm asked the same question. If I answer yes, the GUI is painted ok, but does

Re: [qooxdoo-devel] Modification of property "maximum" failed

2006-10-16 Thread Til Schneider
> When I call this: >var newData = [ ['column1', 'column2'] ]; >myTable.getTableModel().setData(newData); > > I get this error: > > ERROR: qx.ui.core.ScrollBar[4454]: Modification of property "maximum" failed > with exception: TypeError - vCurrentChild has no properties > > It looks like

Re: [qooxdoo-devel] get background color from thememanager ?

2006-10-16 Thread Alex D.
Hi David, this can work(though it's dirty): snip= var theme = qx.manager.object.AppearanceManager.getInstance().getAppearanceTheme(); var colObj = theme._appearances['client-document'].initial().backgroundColor; snap= Cheers, alex

[qooxdoo-devel] Modification of property "maximum" failed

2006-10-16 Thread dperez
Hi community, When I call this: var newData = [ ['column1', 'column2'] ]; myTable.getTableModel().setData(newData); I get this error: ERROR: qx.ui.core.ScrollBar[4454]: Modification of property "maximum" failed with exception: TypeError - vCurrentChild has no properties It looks like a b

Re: [qooxdoo-devel] TextField border

2006-10-16 Thread dperez
Here is a patch for this issue: http://www.nabble.com/file/3643/DefaultAppearanceTheme.diff DefaultAppearanceTheme.diff dperez wrote: > > The default appearance creates TextFields with 1 pixel border, and the > TextField of a ComboBox or a Spinner with 2 pixel border. > > It would be better

[qooxdoo-devel] TextField border

2006-10-16 Thread dperez
The default appearance creates TextFields with 1 pixel border, and the TextField of a ComboBox or a Spinner with 2 pixel border. It would be better in all cases all the border widths were the same. Do you agree? As an example of this, look at http://demo.qooxdoo.org/html/at-a-glance/index.html

[qooxdoo-devel] get background color from thememanager ?

2006-10-16 Thread David Gerlich
hi how can i obtain the background-color in qooxdoo (e.g. theme.getBackgroundColor() or something). I need this, because i want to apply this color to an iframe. thanks david - Using Tomcat but need to do more? Need to s

[qooxdoo-devel] globalCursor

2006-10-16 Thread Alex D.
Hi folks, sorry for the traffic but i have another issue that doesn't work: i have a button that do some filtering(CPU intensive). So in the meantime i would like to set global cursor to "wait": ==snip=== button.addEventListener("execute", function(e){     qx.ui

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Alex D.
Ok, i get it. Thx for your patience. > > No, you need to change the appearance if you want to customize the > properties the appearance configures inside the "state" method. > BackgroundImage is currently not used through the appearance of the > toolbarbutton. > > The easiest is to create a cus

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Sebastian Werner
One appearance is enough. This appearance must not set the background color. After using this appearance, each button can individually setup the background color using setBackgroundColor. Cheers, Sebastian Alex D. schrieb: > Hmm... So if i want five toolbarbuttons with five different colors

Re: [qooxdoo-devel] Table Updation Issue/Bug ?

2006-10-16 Thread Til Schneider
> I have a combo box and on changeSelected I show a table depending upon the > selection. Problem is whenever I update any row or rows of any table if the > is currently visible, then rows are updated. If the table is not visible > then rows are not updated. However, if we change the width of any c

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Alex D.
Hmm... So if i want five toolbarbuttons with five different colors i have to make five appearances? Best Regards, alex.d > Alex D. schrieb: >> It doesnt' work too. WTF??? > > Currently the appearance themes share the properties with you, the > developer. That's problematic, because they are not

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Sebastian Werner
Alex D. schrieb: > It doesnt' work too. WTF??? Currently the appearance themes share the properties with you, the developer. That's problematic, because they are not a fallback or something. We will change this in one of the next major versions, but currently you have to modify the appearance t

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Alex D.
Why should it? I thought appearances provide the "basic" look and could be overridden with "setBackgroundColor" at all times. How can appearances overwrite you background colors??? And when it do this, how can i check it? Regards, alex.d Check appearances not to overwrite your settings. a

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread Alex D.
It doesnt' work too. WTF??? I think you have overcomplicated it. Try this: var stuff = new qx.ui.toolbar.ToolBarRadioButton("stuff"); stuff.setBackgroundColor("#00"); Jim   On 10/13/06, Alex D. <[EMAIL PROTECTED]> wrote: Hi folks, One little question: I can not set

Re: [qooxdoo-devel] Table Updation Issue/Bug ?

2006-10-16 Thread dperez
Could you provide please a simple example? Alee wrote: > > Hello, > > I have a combo box and on changeSelected I show a table depending upon the > selection. Problem is whenever I update any row or rows of any table if > the is currently visible, then rows are updated. If the table is not > vi

Re: [qooxdoo-devel] ToolBarRadioButton backgroundColor

2006-10-16 Thread dperez
Check appearances not to overwrite your settings. alex.d wrote: > > Hi folks, > > One little question: I can not set background color to my > ToolBarRadioButton and i don't really get why: > var stuff = new qx.ui.toolbar.ToolBarRadioButton("stuff"); > stuff.set({ backgroundColor:(new qx.r