Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Hugh Gibson
Rüdiger, That would be exactly what I need. Only that I am working with the 0.7.3 release and can't switch to anything newer in short time. The bug doesn't state a target milestone yet, but from the revision it looks like the fix was applied after 0.7.3. Can you confirm that? Yes, it was

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Rüdiger Herrmann
Hugh, thanks for your explanation. As I am not familiar with the Javascript prototype thing, I will try to backport the changes in __addMember to our 0.7.3 code base. Cheers, Rüdiger Hugh Gibson wrote: Rüdiger, That would be exactly what I need. Only that I am working with the 0.7.3

Re: [qooxdoo-devel] Demobrowser anomaly

2008-09-10 Thread Jonathan Rass
Hi Jim! Could you take a look at the built-in Error Console (View - Error Console) and check if any errors occur? Maybe this problem is related to http://bugzilla.qooxdoo.org/show_bug.cgi?id=1384. Kind regards, Jonathan Jim Hunter wrote: I am using FireFox 3.0 with FireBug installed.

Re: [qooxdoo-devel] Is it possible to create the HTML code for the widgets on the server side (ASP, PHP...)

2008-09-10 Thread Peter Schneider
Hi folks, there's a patch available that *dramatically* increases the performance of the JavaScript engine in IE6. I don't know if I've posted this link already, but here it is again: * http://support.microsoft.com/kb/942840 So if you are having customers that have to stick on IE6 (for

Re: [qooxdoo-devel] qxbuild - complete qooxdoo build

2008-09-10 Thread frederic
Hi Petr, Very nice initiative, this feature was abandoned since qx 0.6. I have a little question regarding the contrib inclusion, I have seen in your config.json that you have included HTMLArea widget. I've tried this code in custom.js file : qx.Class.define(custom.Application, { extend :

Re: [qooxdoo-devel] inspiration sources

2008-09-10 Thread Sebastian Werner
A lot of things, especially the new layouting and child controls are heavily inspired by QT. Sebastian Werner Am 10.09.2008 um 09:16 schrieb Jean-Baptiste BRIAUD - Novlog [EMAIL PROTECTED] : I qooXdoo list ! just curuious, what inpiration sources are at the root of qooXdoo ? Where you

Re: [qooxdoo-devel] Memory optimization ...

2008-09-10 Thread Alexander Back
Hi, geo wrote: Alexander, I noticed the problem in firebug (1.2.0) with Firefox 2.0.0.16 (cf. qooxdoo.png). Whenever I open a context menu, a new div appears on the page, but as soon as the menu disappears this div is hidden (display: none) and it does not removed. Yes, for every menu

Re: [qooxdoo-devel] qxbuild - complete qooxdoo build

2008-09-10 Thread Jean-Baptiste BRIAUD - Novlog
Hi Petr, I took your file, unzip it and try to figure out what should I pickup ... without success. I've seen the qx-build js files in the script folder but I guess I'll have to also pickup some ressources ? What should I copy/past from your folder to my webroot ? On 10 Sep 2008, at 00:37,

Re: [qooxdoo-devel] Memory optimization ...

2008-09-10 Thread geo
Alexander. you're right I create the menu each time, the items of my trees are customized. So each menu is different. Thanks for your help, but just one question is there a way to remove each time the custom menu from the page when it disappear? Thanks ... Regards Alexander Back a écrit :

Re: [qooxdoo-devel] Memory optimization ...

2008-09-10 Thread Alexander Back
Hi, geo wrote: Alexander. you're right I create the menu each time, the items of my trees are customized. So each menu is different. Completely different? If not, you can create a pool of contextmenus and reuse them. Thanks for your help, but just one question is there a way to remove

Re: [qooxdoo-devel] inspiration sources

2008-09-10 Thread Petr Kobalíček
Qt is very nice toolkit, I have used it for some school projects and layouting is really really very close to this in qooxdoo (only difference is that in qx the widgets are added to layout itself). But I think that one of best features in qooxdoo is oo system:) Cheers - Petr 2008/9/10 Sebastian

Re: [qooxdoo-devel] trunk is broken

2008-09-10 Thread Petr Kobalíček
Hi Sebastian, I checked it, I have used correct build from SVN. I tryed to locate the problem and the error exception is thrown here: function flush in Visibility.js : // Dynamically add children to queue // Only respect already known widgets because otherwise the children //

Re: [qooxdoo-devel] trunk is broken

2008-09-10 Thread Sebastian Werner
Hi Petr, Please add a debug call to your version of Visibility.js just before it calls the problematic function. console.debug(queue[hash]) I am really interested in the output it generates. Sebastian Sebastian Werner Am 10.09.2008 um 12:54 schrieb Petr Kobalíček [EMAIL PROTECTED] om:

Re: [qooxdoo-devel] trunk is broken

2008-09-10 Thread Ian Horst
I use qx.ui.table.celleditor.SelectBox in qx.ui.table.Table. Sometimes I get queue[hash].addChildrenToQueue is not a function. Debug shows: qx.ui.core.Spacer[41r] $$hash=41r $$user_width=0 $$user_height=0 queue[hash].addChildrenToQueue is not a function in Visibility.js (Line 121) Ian Horst

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Rüdiger Herrmann
Hi Hugh, maybe you know what's wrong with my next step, too... I back-ported the qx.Class.patch function (appeared to be the only change between 0.7.3 and latest from the 0.7.x legacy branch). Then I created a class (see code below) that contains one function (_idealKeyHandler) that should

Re: [qooxdoo-devel] trunk is broken

2008-09-10 Thread Jonathan Rass
Hello Ian! I just added a hotfix and filed a bug for this: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1390 The trunk should be OK again. Kind regards, Jonathan Rass Ian Horst wrote: I use qx.ui.table.celleditor.SelectBox in qx.ui.table.Table. Sometimes I get

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Derrell Lipman
On Wed, Sep 10, 2008 at 8:10 AM, Rüdiger Herrmann [EMAIL PROTECTED]wrote: maybe you know what's wrong with my next step, too... I back-ported the qx.Class.patch function (appeared to be the only change between 0.7.3 and latest from the 0.7.x legacy branch). Then I created a class (see code

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Hugh Gibson
Rüdiger I'm guessing that it didn't work. Take a look at the example code in frontend/application/testrunner/source/class/testrunner/test/Mixin.js to see it in action and work backwards from there. Check structures in a debugger. It's possible also that you can't apply the patch at the defer

Re: [qooxdoo-devel] trunk is broken

2008-09-10 Thread Ian Horst
queue[hash].addChildrenToQueue is not a function disappeared, but now I have this.__containerElement is null in Widget.js Line 2137. this.__containerElement is null _createProtectorElement()()Widget.js (line 2137) _applyDecorator()(button, null)Widget.js (line 2177)

[qooxdoo-devel] Modern theme

2008-09-10 Thread Oleksiy Golovko
Hi The Modern theme in 0.8 looks really cool, but it behaves quite bad when user enlarges the font in browser (ctrl and +/- for firefox). Do you have plans to fix that? And is that really possible to fix somehow? Thanks, Oleksiy

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Rüdiger Herrmann
Hugh, Derrell, that helped. I got it working now. Thanks a lot, Rüdiger Rüdiger Herrmann wrote: Hi Hugh, maybe you know what's wrong with my next step, too... I back-ported the qx.Class.patch function (appeared to be the only change between 0.7.3 and latest from the 0.7.x legacy

Re: [qooxdoo-devel] Modern theme

2008-09-10 Thread Alexander Back
Hi Oleksiy, I can reproduce this bug. Buttons, scrollbars and other widgets are using the grid decorator for styling. This decorator takes a couple of images to get rounded borders. It seems the decorator fails to scale with the font size changes. Could you please file a bug for this issue?

Re: [qooxdoo-devel] qxbuild - complete qooxdoo build

2008-09-10 Thread Jean-Baptiste BRIAUD - Novlog
It worked fine for me ! Thanks again. On 10 Sep 2008, at 12:36, Petr Kobalíček wrote: Hu guys, I try to answer:) First, the HtmlArea widget is not included in this biuld. I'm using it, so it's only commented. The reason that not icluding this widget is that it's in development and there

Re: [qooxdoo-devel] rounded borders

2008-09-10 Thread Alexander Back
Hi, just want let you know that the image clipping and combining landed in the documentation section at the qooxdoo wiki. - http://qooxdoo.org/documentation/0.8/image_clipping_and_combining Be sure to check it out :) cheers, Alex Chris Banford wrote: Hi Alex, Thanks for this great

Re: [qooxdoo-devel] Memory optimization ...

2008-09-10 Thread geo
Alexander, Thanks for your answer. But I use the EventListener contextmenu to display my context menu in the tree, I also use a function to create the customized menu with this case code I don't know where place the this.remove. Please find attach a sample of my code.

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread John de la Garza
Jim Hunter wrote: There is no need to use qooxdoo at all, simply create a bunch of DIVs and give them borders. Placing them in the correct place will give you the look of a 'grid' and give you containers to place videos in. Jim That is what I did but was wondering if I should or could do

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread Jim Hunter
Are there other qooxdoo controls on the page? Is this just part of a larger application? Jim On Wed, Sep 10, 2008 at 9:49 AM, John de la Garza [EMAIL PROTECTED] wrote: Jim Hunter wrote: There is no need to use qooxdoo at all, simply create a bunch of DIVs and give them borders. Placing

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread John de la Garza
Jim Hunter wrote: Are there other qooxdoo controls on the page? Is this just part of a larger application? Jim yes It works if I run it from source, but when I do a build it doesn't show the horizontal lines and instead of saying help at the right of the tool bar it says '5' it is part

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread johndela1
Jim Hunter wrote: Are there other qooxdoo controls on the page? Is this just part of a larger application? Jim yes It works if I run it from source, but when I do a build it doesn't show the horizontal lines and instead of saying help at the right of the tool bar it says '5' it is part of

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread Jim Hunter
Unfortunately, I don't see anything immediately that sticks out as being wrong and I am not yet using .8 so I don't have a way to test your code to see what the issue might be. Are you using FireFox with FireBug? There might be some messages coming up in FireBug console that might help you

Re: [qooxdoo-devel] need to draw grid

2008-09-10 Thread John de la Garza
Jim Hunter wrote: Unfortunately, I don't see anything immediately that sticks out as being wrong and I am not yet using .8 so I don't have a way to test your code to see what the issue might be. Are you using FireFox with FireBug? There might be some messages coming up in FireBug console

[qooxdoo-devel] My module config

2008-09-10 Thread Sebastian Werner
Hi guys,during my train trip to Berlin I worked a bit on a module configuration for the GUI of qooxdoo using the powerful "part" system. This is currently a bit underdocumented and will definitely got more love in the future. It was mainly developed for one of the largest qooxdoo applications, the

[qooxdoo-devel] strange behavior

2008-09-10 Thread John de la Garza
The following codes logs prints out NaN, but if I remove a non related line of logging code then it prints out a number. this behavior only shows it self in build mode, in source mode everything works... Anyone have any idea as to why taking out console.log(html1:+html1); would

Re: [qooxdoo-devel] strange behavior

2008-09-10 Thread Derrell Lipman
On Wed, Sep 10, 2008 at 5:52 PM, John de la Garza [EMAIL PROTECTED] wrote: The following codes logs prints out NaN, but if I remove a non related line of logging code then it prints out a number. this behavior only shows it self in build mode, in source mode everything works... Anyone have