[qooxdoo-devel] [0.8] file uploading

2008-08-14 Thread Guilherme Aiolfi
Hi, regarding file uplaoding, I was looking the code of UploadField and UploadForm and I think it can be easier than it is now. My ideia is create a FileField extending TextField, just changing its "type". Then, change qx.ui.io.remote.Request::setFormField to recieve both: a String or a IFormEleme

Re: [qooxdoo-devel] qx.ui.tree.Tree again and again

2008-08-14 Thread Petr Kobalíček
After experimenting, I have following error: The code: // tree var renamed = this.__pathToItem(path); try { if (renamed) { item.remove(renamed); //renamed.destroy();

[qooxdoo-devel] ComboBox re-building problem

2008-08-14 Thread Kanugula
Hi, I reuse ComboBox by injecting the List based on the user input. Whenever an item is selected from the list, it remebers the old value from ComboBox.getSelected().getValue(). As a workaround to this, I click on the ComboBox to expand the list, guessing that it is expecting an onclick event. Th

Re: [qooxdoo-devel] GroupBox label color

2008-08-14 Thread Kanugula
Hi, At the same time, I am trying to set the Border color for the Group Box also. I tried the following, no success. group1.getLegendObject().setBorder({"color":"blue"}); group1.getLegendObject().setBorder({color:"blue"}); Help please. Thanks. Kanugula. Kanugula wrote: > > Hi, > > I couldn'

Re: [qooxdoo-devel] EventListeners

2008-08-14 Thread Jim Hunter
Sometimes the answer is so simple you overlook it. I was drilling into __listeners and trying to call removeEventListener on it's members but the short amount of time I spent on it I was not having success. This sounds like a very simply and efficient way to solfe the problem. Thanks! Jim On Th

Re: [qooxdoo-devel] Loading images into qx.ui.embed.Gallery (0.7.3) [Works with Safari/Webkit & IE]

2008-08-14 Thread Dalmazio Brisinda
Yes, it does help. Thanks for the time you've spent on this. And no worries -- I'm sure more pressing concerns (like trying to get a 0.8 release out the door) is taking up much of your time. Best, Dalmazio Alexander Back wrote: > > Hi Dalmazio, > > I've just played a little bit with the gal

Re: [qooxdoo-devel] Getting error when sorting Table after Revision 15184

2008-08-14 Thread Fabian Jakobs
Fabian Jakobs schrieb: > Fink, Andreas schrieb: > >> Hi, >> >> I'm using qooxdoo from SVN /branches/legacy_0_7_x/ and after I have >> updated to the head revision I'm getting errors if I try to sort table >> columns. >> The error is: >> >> data is not defined >> [Break on this error] if (data.re

[qooxdoo-devel] Locale changing leads to IE problem

2008-08-14 Thread Dioc
Hello, I am using qooxdoo 0.7.3. I found an annoying problem that is related to Internet Explorer and locale changing. I posted the corresponding bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=1181 #1181 in Bugzilla. Is there a workaround to prevent this problem? Any help will be very apprecia

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-14 Thread Fabian Jakobs
[EMAIL PROTECTED] schrieb: >>> I would not be surprised if the base line memory consumption of the >>> > qooxdoo app > >>> is above GWT and dojo as qooxdoo widgets are probably more complex than >>> > those. > > No problem with that. > > >>> BTW to my knowledge the RAP guys

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-14 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: >>> I would not be surprised if the base line memory consumption of the > qooxdoo app >>> is above GWT and dojo as qooxdoo widgets are probably more complex than > those. > > No problem with that. > >>> BTW to my knowledge the RAP guys at Innoopract are working to

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-14 Thread stefan . hansel
>> I would not be surprised if the base line memory consumption of the qooxdoo app >> is above GWT and dojo as qooxdoo widgets are probably more complex than those. No problem with that. >> BTW to my knowledge the RAP guys at Innoopract are working to add widget >> pooling in the next 0.8

Re: [qooxdoo-devel] qooxdoo 0.8 : qx.bom.Element.create(String name, Map attributes, Window win, String ns)

2008-08-14 Thread Fabian Jakobs
Sebastian Werner schrieb: > Can you please open a bug to report the missing namespace supports. > > Thank you for your help. You can append you patch to the bug report. This would be a big help. Best Fabian -- Fabian Jakobs JavaScript Framework Developer 1&1 Internet AG Brauerstraße 48 76135

Re: [qooxdoo-devel] Server push

2008-08-14 Thread Fabian Jakobs
Hi Ian, > I see on http://qooxdoo.org/community/wishlist that "push" is a wishlist item. > > But does anyone have a clever way of doing it regardless? > > I thought I would ask before implementing a polling system. > > > server push is not directly tied to the frontend technologie (qooxdoo in t

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-14 Thread Sebastian Werner
One thing which is wrong in your qooxdoo code is that you call dispose and destroy. For widget destroy is the better alternative when you really want to remove the element (which means from the DOM as well). When you call dispose() afterwards this effect is torpedated. Sebastian Fabian Jakobs

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-14 Thread Fabian Jakobs
Hi Stefan, thank you for sharing these results. We will have a very close look at the memory consumption of your script. I would not be surprised if the base line memory consumption of the qooxdoo app is above GWT and dojo as qooxdoo widgets are probably more complex than those. But the increa

Re: [qooxdoo-devel] EventListeners

2008-08-14 Thread Fabian Jakobs
Hi Jim, It may be even easier if you just reset the __listeners field: removeAllListeners : function() { this._disposeObjectDeep("__listeners", 2); this.__listeners = {}; } Put this in a mixin and add it to qx.core.Target. This will work with anonymous functions as well. Best Fabian >

Re: [qooxdoo-devel] regarding rounded borders

2008-08-14 Thread Sebastian Werner
Hi Insane, in a simple setup the Grid decorators use 9 images. But this is normally not needed when using image combines. When you have a look at the default button style in the Modern theme you can see the effect. We use mainly 3 images and two of them also contains all the other supported st

[qooxdoo-devel] qooxdoo 0.8 : qx.bom.Element.create(String name, Map attributes, Window win, String ns)

2008-08-14 Thread Ian Horst
Hi all, Unfortunately my last e-mail didn't reach mailing list. I resend it. Finally I started to work on svg charting and other widgets like dials. Method qx.bom.Element.create() has parameter ns (Namespace of element to create), but it's not yet implemented. Could you please implement it?

Re: [qooxdoo-devel] Rounded border colours in Internet Explorer - qooxdoo 0.8 beta1

2008-08-14 Thread Fabian Jakobs
Hi Paul, > It looks like IE 6 has some other issues with the new Modern theme. The > tabs, window shadows, and other appearances are drawing with the incorrect > colors. > > http://www.nabble.com/file/p18951812/qx_tab_ie6.jpg > > I am also seeing issues with the demo browser rendering the selecte

Re: [qooxdoo-devel] [0.8] Array.max and Array.min

2008-08-14 Thread Fabian Jakobs
Petr Kobalíček schrieb: > Yes, it's #1171 > thank you > 2008/8/14 Fabian Jakobs <[EMAIL PROTECTED]>: > >> Petr Kobalíček schrieb: >> >>> Hi Guilherme, >>> >>> I have another way :-) >>> >>> max : function(arr) >>> { >>> var i, len=arr.length, result = arr[0]; >>> for

[qooxdoo-devel] qx.ui.tree.Tree again and again

2008-08-14 Thread Petr Kobalíček
Hi, I have today some problem with Tree. To be correct, I'm using it quite long time, but for every sync, I'm removing all elements and adding new elemens to tree, this is without problems:) But I have component, where I'm sorting items by name ( getLabel() ) and if I rename something, I need to

Re: [qooxdoo-devel] [0.8] Array.max and Array.min

2008-08-14 Thread Petr Kobalíček
Yes, it's #1171 2008/8/14 Fabian Jakobs <[EMAIL PROTECTED]>: > Petr Kobalíček schrieb: >> Hi Guilherme, >> >> I have another way :-) >> >> max : function(arr) >> { >> var i, len=arr.length, result = arr[0]; >> for (i = 1; i < len; i++) if (arr[i] > result) result = arr[i]; >>

Re: [qooxdoo-devel] qooxdoo 0.8 : qx.bom.Element.create(String name, Map attributes, Window win, String ns)

2008-08-14 Thread Sebastian Werner
Can you please open a bug to report the missing namespace supports. Thank you for your help. Sebastian Ian Horst schrieb: > Hi all, > > Finally I started to work on svg charting and other widgets like dials. > > Method qx.bom.Element.create() has parameter ns (Namespace of element to > creat

Re: [qooxdoo-devel] Rounded border colours in Internet Explorer - qooxdoo 0.8 beta1

2008-08-14 Thread Sebastian Werner
The Grid decorator has got a few improvements yesterday. Maybe you can try it again with the latest trunk or wait until the rc1 next week. Cheers, Sebastian WillP schrieb: > I have tried using the Grid decorator to achieve rounded corners now > that the Rounded decorator has been removed and t

Re: [qooxdoo-devel] [0.8] Array.max and Array.min

2008-08-14 Thread Fabian Jakobs
Petr Kobalíček schrieb: > Hi Guilherme, > > I have another way :-) > > max : function(arr) > { > var i, len=arr.length, result = arr[0]; > for (i = 1; i < len; i++) if (arr[i] > result) result = arr[i]; > return result; > } > > min : function(arr) > { > v

Re: [qooxdoo-devel] application locking up

2008-08-14 Thread Ian Monroe
On Wed, Aug 13, 2008 at 4:45 AM, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > At the top right corner of the API viewer is a button, which toggles > "show inherited". Maybe this is want you need. Please let us know if you > have problems with the API doc in 0.8. > > Best Fabian Problem: never notice

[qooxdoo-devel] qooxdoo 0.8 : qx.bom.Element.create(String name, Map attributes, Window win, String ns)

2008-08-14 Thread Ian Horst
Hi all, Finally I started to work on svg charting and other widgets like dials. Method qx.bom.Element.create() has parameter ns (Namespace of element to create), but it's not yet implemented. Could you please implement it? If you are too busy, I can implement it and drop svn patch here. PS. I

Re: [qooxdoo-devel] Rounded border colours in Internet Explorer - qooxdoo 0.8 beta1

2008-08-14 Thread WillP
I have tried using the Grid decorator to achieve rounded corners now that the Rounded decorator has been removed and there are still some problems in Internet Explorer 6.0 - it does not render the bottom border. I have altered the demo program to show the problem. I used this set of 3x3 images to

Re: [qooxdoo-devel] Loading images into qx.ui.embed.Gallery (0.7.3) [Works with Safari/Webkit & IE]

2008-08-14 Thread Alexander Back
Hi Dalmazio, I've just played a little bit with the gallery demo and I discovered that the problem is (at least for Webkit) the border itself. If you do not set any border at the demo it works as expected. Precisely the complex border as for example "inset" or "outset" are causing the problem