Re: [qooxdoo-devel] Datechooser locale info 0.7.3?

2008-08-22 Thread Sebastian Werner
Bruce, Try to define some locales in the Makefile. Have a look at our wiki pages: http://qooxdoo.org/documentation/0.7/internationalization?s=locale#extract_the_messages Sebastian Am 23.08.2008 um 01:07 schrieb Bruce Bockius: Hi, I’m trying to use the qx.ui.component.DateChooser. It wor

[qooxdoo-devel] Datechooser locale info 0.7.3?

2008-08-22 Thread Bruce Bockius
Hi, I'm trying to use the qx.ui.component.DateChooser. It works, except I get month names like "cldr_month_wide_8". Obviously I'm not setting something up properly for the locale information (which is to say, I haven't set anything up). Can anyone suggest where I should look for info?

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Jim Hunter
If I may suggest one future additional property, it would be vertical alignment within each row ["top", "middle", "botton"]. I cludged something like this in .7.x because I have a need for bottom aligned objects. I can look up the code to give you hints on how I did it if needed. Thanks, Jim On

Re: [qooxdoo-devel] asset

2008-08-22 Thread John de la Garza
[EMAIL PROTECTED] wrote: >> By compile do they mean generate? There is no compiling going on with >> qooxdoo is there? >> > > And why not? We parse Javascript, create an AST, do transformations on it, > and write Javascript out again. > it is pretty interesting... js to js, I mean > >

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Chris Banford
Have gotten the Flow layout to respect child Margins -- Yeay! :-) . Next up is to handle alignX : [ "left", "center", "right" ] As this little project seriously needs to be refactored (I'd like to try and match the coding style of Fabian and Sebastian's H/VBoxes), its time for me to head off d

[qooxdoo-devel] 2 Commands with same shortcut

2008-08-22 Thread Guilherme Aiolfi
Hi, Can't I create 2 commands with the same shortcut? For example, I have this StackLayout with 2 layers. Both have its own toolbar with a "back" button. And I want to use "Escape" to both. Is it possible? -- - This SF.Net

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Chris Banford
Sebastian Werner wrote: Am 22.08.2008 um 20:03 schrieb Chris Banford: Assuming I can get this layout to a usable stage, what are the requirements for such a beast? This is what I can think of off-hand: * The layout should respect any padding added to the elements it manages. T

Re: [qooxdoo-devel] can't run generate.py

2008-08-22 Thread Guilherme Aiolfi
It's working again. \o/ 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]> > This depends on your application hopefully. The "black" decorator is not > anymore available in both themes. Please use "main" instead. > > We are going to semantic names for 0.8. > > Sebastian > > > Am 22.08.2008 um 19:31 s

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread Sebastian Werner
Am 22.08.2008 um 19:47 schrieb [EMAIL PROTECTED]: If you call setParent(null) the DOM-node is correctly removed. > Circular references between widget and DOM are reset in the destructor of > Widget. > >>> This is not the case in my opinion. The node is only removed after >>> the >>> l

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Sebastian Werner
Am 22.08.2008 um 20:03 schrieb Chris Banford: Assuming I can get this layout to a usable stage, what are the requirements for such a beast? This is what I can think of off-hand: The layout should respect any padding added to the elements it manages. That's automatically done for you. Th

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Chris Banford
Sebastian Werner wrote: -- snip -- Basically it's the same you do in the layout process, but without layouting. The problem in a Flow Layout is that the height depends on the available width. This is somewhat comparable to a multi-line Label. I am not sure how to solve this best in a Fl

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Sebastian Werner
>> -- snip -- >> >> -Chris > > Hi List, > > I've got a very rough version of a Flow layout working (similar to > float: left in CSS, but nicer :-) ). That's definitely hot. Wow. > > > I'm sure its still a terrible hack, but really kinda cool I can > figure this type of thing out with basi

Re: [qooxdoo-devel] How to Redecorate a sub classed widget?

2008-08-22 Thread Chris Banford
Derrell Lipman wrote: On Fri, Aug 22, 2008 at 2:50 PM, Chris Banford <[EMAIL PROTECTED]> wrote: Hi list, The second little project I'm working on to try and get a bit of a feel for how 0.8 works is to sub class and redesign a qooxdoo window. To make this work I need to "

Re: [qooxdoo-devel] can't run generate.py

2008-08-22 Thread Sebastian Werner
This depends on your application hopefully. The "black" decorator is not anymore available in both themes. Please use "main" instead. We are going to semantic names for 0.8. Sebastian Am 22.08.2008 um 19:31 schrieb Guilherme Aiolfi: I'd to change the encoding to make it work. Now I'm getti

Re: [qooxdoo-devel] can't run generate.py

2008-08-22 Thread Sebastian Werner
This was an error in SVN. Is fixed now. Sorry for the inconvenience. Sebastian Am 22.08.2008 um 19:19 schrieb John de la Garza: > can't generate.py source > > I just did a svn update and then a > > > qooxdoo/tool/bin/create-application.py -n main_app -o . > > > now I get this: > > > > [EMAIL

Re: [qooxdoo-devel] How to Redecorate a sub classed widget?

2008-08-22 Thread Derrell Lipman
On Fri, Aug 22, 2008 at 2:50 PM, Chris Banford <[EMAIL PROTECTED]> wrote: > Hi list, > > The second little project I'm working on to try and get a bit of a feel > for how 0.8 works is to sub class and redesign a qooxdoo window. To make > this work I need to "Redecorate" both the window's pane and

Re: [qooxdoo-devel] asset

2008-08-22 Thread thron7
> At the top of Application.js I see #asset and it is in a comment block. > I read the generator_config article and see that they are compiler hints. > > By compile do they mean generate? There is no compiling going on with > qooxdoo is there? And why not? We parse Javascript, create an AST, do t

Re: [qooxdoo-devel] How to Redecorate a sub classed widget?

2008-08-22 Thread Chris Banford
I think I might have answered my own question on this one -- it looks like the 0.8 theming is more or less the same as the 0.7 set up.. ( http://qooxdoo.org/documentation/0.7/theme_support ?). Will try and use the old docs as a starting point to see if I can figure this out, without too much h

[qooxdoo-devel] How to Redecorate a sub classed widget?

2008-08-22 Thread Chris Banford
Hi list, The second little project I'm working on to try and get a bit of a feel for how 0.8 works is to sub class and redesign a qooxdoo window. To make this work I need to "Redecorate" both the window's pane and caption-bar. At the moment I have zero idea where to start on this -- are there a

[qooxdoo-devel] asset

2008-08-22 Thread John de la Garza
At the top of Application.js I see #asset and it is in a comment block. I read the generator_config article and see that they are compiler hints. By compile do they mean generate? There is no compiling going on with qooxdoo is there? is there any more documentation about #asset? I'm still no

Re: [qooxdoo-devel] Flow layout for 0.8

2008-08-22 Thread Chris Banford
Assuming I can get this layout to a usable stage, what are the requirements for such a beast? This is what I can think of off-hand: * The layout should respect any padding added to the elements it manages. * Each wrap of elements should to a new 'row' should clear all elements

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread stefan . hansel
>>> If you call setParent(null) the DOM-node is correctly removed. Circular >>> references between widget and DOM are reset in the destructor of Widget. >>This is not the case in my opinion. The node is only removed after the >>layout queues etc. have been flushed which never happens for widge

Re: [qooxdoo-devel] can't run generate.py

2008-08-22 Thread Guilherme Aiolfi
I'd to change the encoding to make it work. Now I'm getting: [Exception... "'Error: Error in property decorator of class qx.ui.basic.Label in method setThemedDecorator with incoming value 'black': Is invalid!' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001c (NS_ERROR

[qooxdoo-devel] can't run generate.py

2008-08-22 Thread John de la Garza
can't generate.py source I just did a svn update and then a qooxdoo/tool/bin/create-application.py -n main_app -o . now I get this: [EMAIL PROTECTED]:~/main_app$ ./generate.py source INITIALIZING: MAIN_APP

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: > Good that it is known to the developers ;-) ... this should definitely be > documented! Yeah sure. Many things are better with more documentation. But we are quite busy with 0.8 right now :) > > Introducing a destroy method would be a good idea - and also a good pl

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread stefan . hansel
Good that it is known to the developers ;-) ... this should definitely be documented! Introducing a destroy method would be a good idea - and also a good place to document the differences to a simple dispose. I think that 'interims-disposes' as you call it are quite common, when creating 'sing

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Chris Banford
Sebastian Werner wrote: -- snip -- Hi Sebastian, Wasn't trying to make advertising for a sort of competing js library :-) . Yes, I know that this shrinks down to around 40KB when zipped -- but I'm pretty sure for this concrete example, that YUI's libs would be smaller.

Re: [qooxdoo-devel] flash class

2008-08-22 Thread John de la Garza
Sebastian Werner wrote: > variables = variables to send to the flash movie after being loaded > parameters = arguments used for embedding the original movie > > Hope this helps. > > Sebastian > > >> >> >> I tried this: >> --- >> var params = {"file": "foz/video.flv"}; also tried the path "

Re: [qooxdoo-devel] demo issue

2008-08-22 Thread John de la Garza
Alexander Back wrote: > Hi John, > > John de la Garza wrote: > >> on the demo page >> >> http://demo.qooxdoo.org/current/showcase/#SplitPane >> >> if you click 'IE BLOG' that page doesn't show up in the side pane but >> takes over the whole page >> > You're right. There is some javascript

Re: [qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread Sebastian Werner
Stefan, these issue is known. The problem with setting parent to "null" is that is massively slows down the final dispose on shutdown. Also setParent does not correctly remove the DOM node from the parent node when it is disposed directly afterwards. A workaround would be to call setParent(nul

[qooxdoo-devel] Findings on memory leak 0.7.x

2008-08-22 Thread stefan . hansel
Sorry to disturb you with 0.7.x stuff, but as I wrote, also 0.7.3 (and 0.7.x_branch) has a huge memory leak (measured in IE 7). After some investigation, I realized that after disposal widgets still are referenced by their parent-widget (though invisble then) in the _children-array. Thats why

Re: [qooxdoo-devel] ComboBoxEx drop down in the wrong place on screen

2008-08-22 Thread John Spackman
Any news on this, anyone? Although I can fix the problem by not setting "qx.enableApplicationLayout=false", is that a good thing to do? IE will there be undesirable side effects etc? John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Spackman Sen

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Sebastian Werner
-- snip -- >>> Hi Sebastian, >>> >>> Wasn't trying to make advertising for a sort of competing js library :-) . >>> >>> Yes, I know that this shrinks down to around 40KB when zipped -- but >>> I'm pretty sure for this concrete example, that YUI's libs would be >>> smaller. >>> >>> -

[qooxdoo-devel] Mouse cursor problem in MResizable in version 0.7.3?

2008-08-22 Thread Jeroen Smit
Hi, If I have two resizable windows with exactly the same size on top of each other and I mouse the mouse towards the edge, the cursor is changed to one of the resize-cursors. However, the cursor remains this way when I mouve the mouse away from the edge of the window and this is incorrect. Deb

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Chris Banford
Fabian Jakobs wrote: Chris Banford schrieb: Sebastian Werner wrote: Chris Banford schrieb: Fabian Jakobs wrote: Tobias Koller (GERMO GmbH) schrieb: Hi, one question. Is it possible to just use the fantastic layouting in qooxdoo 0.8 to b

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Fabian Jakobs
Chris Banford schrieb: > Sebastian Werner wrote: >> Chris Banford schrieb: >> >>> Fabian Jakobs wrote: >>> Tobias Koller (GERMO GmbH) schrieb: > Hi, > > one question. > > Is it possible to just use the fantastic layouting in qooxdoo 0.8 to >

Re: [qooxdoo-devel] httpd

2008-08-22 Thread Florian Giesen
Hi, I found a solution to my problem. For everyone who is interested I have appended my modified config.json. Regards, Florian Hello Thomas, let me answer your questions directly inside the text: > a couple of questions here: > > a) What does "docroot/cms/index.html (includes qooxdoo app)

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread Matthew Gregory
:$ It would probably help if I could read, sorry, I read this as trying to go three levels up rather than just two. I'll go with this! Thanks! >> Thanks, I'll just ask developers to either block port 80 on thier >> firewall or restrict access via IP. >> > > What about my suggestion changin

Re: [qooxdoo-devel] Gallery in 0.8

2008-08-22 Thread Chris Banford
Fabian Jakobs wrote: Chris Banford schrieb: Tobias Oetiker schrieb: 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]>: Petr, It's useful. Sure. The issue with it was that it has never got any love after its initial release with 0.5 years ago. Today one would b

Re: [qooxdoo-devel] httpd

2008-08-22 Thread thron7
Florian Giesen wrote: > Thank you for your help but I'm still stuck with this problem. But now I > think I can be more precisely: > > I want to use qooxdoo 0.8 inside a module for PHP basen content management > system (2F-CMS, only for information). So my problem is, that my qooxdoo code > must

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Chris Banford
Sebastian Werner wrote: Chris Banford schrieb: Fabian Jakobs wrote: Tobias Koller (GERMO GmbH) schrieb: Hi, one question. Is it possible to just use the fantastic layouting in qooxdoo 0.8 to build an web-application? It is always a big problem to layout divs and spans et

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread thron7
> Thanks, I'll just ask developers to either block port 80 on thier > firewall or restrict access via IP. > What about my suggestion changing the SDK alias in Apache?! T. - This SF.Net email is sponsored by the Moblin Y

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread Matthew Gregory
Thanks Thomas, thron7 wrote: > > Your configuration is on a dev system, right?! It shouldn't hurt > exposing more structure on an internal development system. Or do you > host development and production on the same system?! This is soley on development systems. My main concern was people will

Re: [qooxdoo-devel] Gallery in 0.8

2008-08-22 Thread Fabian Jakobs
Chris Banford schrieb: > >> Tobias Oetiker schrieb: >> 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]>: > Petr, > > It's useful. Sure. The issue with it was that it has never got any > love after its initial release with 0.5 years ago. Today one would >>

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Sebastian Werner
Chris Banford schrieb: > Fabian Jakobs wrote: >> Tobias Koller (GERMO GmbH) schrieb: >> >>> Hi, >>> >>> one question. >>> >>> Is it possible to just use the fantastic layouting in qooxdoo 0.8 to >>> build an web-application? >>> >>> It is always a big problem to layout divs and spans etc exactl

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread thron7
Matthew Gregory wrote: > OK, well it's good to see I'm not going mad! > > We have the following file structure: > \projects >\custom > \client<--- this is where config.json is >\source <--- index.html here > \class >\custom <--- our classes in her

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Chris Banford
Fabian Jakobs wrote: Tobias Koller (GERMO GmbH) schrieb: Hi, one question. Is it possible to just use the fantastic layouting in qooxdoo 0.8 to build an web-application? It is always a big problem to layout divs and spans etc exactly in all browsers (its standard in qooxdoo) ;). A sta

Re: [qooxdoo-devel] Gallery in 0.8

2008-08-22 Thread Chris Banford
Tobias Oetiker schrieb: 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]>: Petr, It's useful. Sure. The issue with it was that it has never got any love after its initial release with 0.5 years ago. Today one would build such a widget with the layout system or render it as a virtu

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread Matthew Gregory
OK, well it's good to see I'm not going mad! We have the following file structure: \projects \custom \client<--- this is where config.json is \source <--- index.html here \class \custom <--- our classes in here \build \qooxdoo-sdk <---

Re: [qooxdoo-devel] GroupBox padding, qx 0.7.3

2008-08-22 Thread Petr Kobalíček
Thank you Alex, I missed it :-) 2008/8/22 Alexander Back <[EMAIL PROTECTED]>: > Hi Petr, > > > Petr Kobalíček wrote: >> Hi Alex, thanks for post. >> >> I forgot to note that I tried this: >> >> groupBox.set({padding: 0 }); >> >> so this should overwrite theme behavior, shoulnd't it ? > The loc

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread thron7
thron7 wrote: > Matthew Gregory wrote: > >> Hi All, >> Has this changed? I've just tried porting from beta1 to rc1 and it's >> broken :( I've searched the mailing list and bugzilla but couldn't find >> anything. >> BTW: It was in the SVN commit message: http://qooxdoo.svn.sourceforge.ne

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread thron7
Matthew Gregory wrote: > Hi All, > Has this changed? I've just tried porting from beta1 to rc1 and it's > broken :( I've searched the mailing list and bugzilla but couldn't find > anything. > > Here is a copy of my config file: > > { >"name": "custom", > >"include" : >[ > { >

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Gaetan de Menten
On Fri, Aug 22, 2008 at 10:21 AM, Alexander Back <[EMAIL PROTECTED]> wrote: >> I'll probably (hopefully) start porting my applications to 0.8 by the >> end of next week. Then you'll probably see much more >> non-visuals-related bug reports. > Just a little curious. What kind of applications do yo

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Gaetan de Menten
On Fri, Aug 22, 2008 at 10:04 AM, Sebastian Werner <[EMAIL PROTECTED]> wrote: > Gaetan de Menten schrieb: >> Here are the results of a quick test. >> >> As usual, my tests are done on FF 2.0.0.16, in the online demos. >> >> - Modern theme's tabviews buttons still have that ugly line below them >> (

Re: [qooxdoo-devel] GroupBox padding, qx 0.7.3

2008-08-22 Thread Alexander Back
Hi Petr, Petr Kobalíček wrote: > Hi Alex, thanks for post. > > I forgot to note that I tried this: > > groupBox.set({padding: 0 }); > > so this should overwrite theme behavior, shoulnd't it ? The local settings always overwrite the theme settings. But in your case you need to set the padd

Re: [qooxdoo-devel] GroupBox padding, qx 0.7.3

2008-08-22 Thread Petr Kobalíček
Hi Alex, thanks for post. I forgot to note that I tried this: groupBox.set({padding: 0 }); so this should overwrite theme behavior, shoulnd't it ? 2008/8/22 Alexander Back <[EMAIL PROTECTED]>: > Hi Petr, > > Petr Kobalíček wrote: >> Hi, >> >> I'm wondering if I can adjust extra padding that

[qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-08-22 Thread Matthew Gregory
Hi All, Has this changed? I've just tried porting from beta1 to rc1 and it's broken :( I've searched the mailing list and bugzilla but couldn't find anything. Here is a copy of my config file: { "name": "custom", "include" : [ { "path" : "../qooxdoo-sdk/tool/data/confi

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

2008-08-22 Thread Fabian Jakobs
Petr Kobalíček schrieb: > Sorry for opening this topic (I noticed accepted bug in bugzilla and I > don't know how to add comment there) > You need to be logged in to comment on bugs. You can create an account here: It would be great if you could

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Tobias Koller (GERMO GmbH)
Ah...good to know ;) Thanks Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Sebastian Werner Gesendet: Freitag, 22. August 2008 10:41 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] using only layouting for website Tobias Koller (GERM

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Sebastian Werner
Tobias Koller (GERMO GmbH) schrieb: > Hi, > > just for my own interest: > how does the layout of qooxdoo work? > do you calculate all positions of widgets etc depending on the window-size? That's exactly what it does. > What is the different to the usual HTML-sh..? It works ;) We just give abso

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Tobias Koller (GERMO GmbH)
Hi, just for my own interest: how does the layout of qooxdoo work? do you calculate all positions of widgets etc depending on the window-size? What is the different to the usual HTML-sh..? Maybe this is a "not-too-easy-explain"-question but I really want to know this ;) Thanks Tobias -Urs

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Alexander Back
Hi Gaetan, Gaetan de Menten wrote: > And I just discovered that all demos in the "root" folder are broken > with the Modern theme. Already on my list for 0.8 :) http://bugzilla.qooxdoo.org/show_bug.cgi?id=1233 cheers, Alex -

Re: [qooxdoo-devel] How to unselect a widget?

2008-08-22 Thread Fabian Jakobs
jhonny thio schrieb: > Hi, I have a window with tree and table widget. > > If I select the tree items, I want the selection in table gone. And if > I select the table rows, I want the selection in tree gone. How to > make it? > > Thank you very much Both widgets have a selection manager, which is

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Fabian Jakobs
Tobias Koller (GERMO GmbH) schrieb: > > Hi, > > one question. > > Is it possible to just use the fantastic layouting in qooxdoo 0.8 to > build an web-application? > > It is always a big problem to layout divs and spans etc exactly in all > browsers (its standard in qooxdoo) ;). > > A standard-app

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Alexander Back
Hi Gaetan, Gaetan de Menten wrote: > Here are the results of a quick test. > > As usual, my tests are done on FF 2.0.0.16, in the online demos. > > Most problems I have were already reported earlier (but are not in the > bugzilla). Some of them were fixed at some point but are broken again, > wh

Re: [qooxdoo-devel] flash class

2008-08-22 Thread Sebastian Werner
variables = variables to send to the flash movie after being loaded parameters = arguments used for embedding the original movie Hope this helps. Sebastian John de la Garza schrieb: > I found a Flash class... > > what does it mean to say the params arg is ?{map} ? > > > > create(Strin

Re: [qooxdoo-devel] How to unselect a widget?

2008-08-22 Thread Sebastian Werner
You can use: tree.clearSelection() in 0.8. Sebastian jhonny thio schrieb: > Hi, I have a window with tree and table widget. > > If I select the tree items, I want the selection in table gone. And if I > select the table rows, I want the selection in tree gone. How to make it? > > Thank you

Re: [qooxdoo-devel] My layout goes out from it's parent

2008-08-22 Thread Fabian Jakobs
jhonny thio schrieb: > Hi, I have an application that contain tabview, table, and toolbar. > > Here some of my code : > > // table setup > MyTable = new view.Table(this); > MyTable.setDimension("1000", "100%"); > > > var dockLayout2 = new qx.ui.layout.VerticalBoxLayout; > dockLayout2.setEdge(0

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Sebastian Werner
Gaetan de Menten schrieb: > Here are the results of a quick test. > > As usual, my tests are done on FF 2.0.0.16, in the online demos. > > Most problems I have were already reported earlier (but are not in the > bugzilla). Some of them were fixed at some point but are broken again, > while some o

Re: [qooxdoo-devel] Gallery in 0.8

2008-08-22 Thread Fabian Jakobs
Tobias Oetiker schrieb: >> 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]>: >> >>> Petr, >>> >>> It's useful. Sure. The issue with it was that it has never got any >>> love after its initial release with 0.5 years ago. Today one would >>> build such a widget with the layout system or render it

Re: [qooxdoo-devel] RC feedback

2008-08-22 Thread Gaetan de Menten
And I just discovered that all demos in the "root" folder are broken with the Modern theme. On Fri, Aug 22, 2008 at 9:35 AM, Gaetan de Menten <[EMAIL PROTECTED]> wrote: > Here are the results of a quick test. > > As usual, my tests are done on FF 2.0.0.16, in the online demos. > > Most problems I

Re: [qooxdoo-devel] GroupBox padding, qx 0.7.3

2008-08-22 Thread Alexander Back
Hi Petr, Petr Kobalíček wrote: > Hi, > > I'm wondering if I can adjust extra padding that's in qooxdoo > GroupBox. I've attached a screenshod with red lines that describes > what I mean. You need to modify the appearance "group-box-frame" to change the padding. To achieve this you can extend the

[qooxdoo-devel] RC feedback

2008-08-22 Thread Gaetan de Menten
Here are the results of a quick test. As usual, my tests are done on FF 2.0.0.16, in the online demos. Most problems I have were already reported earlier (but are not in the bugzilla). Some of them were fixed at some point but are broken again, while some others were never fixed. - Feed reader s

Re: [qooxdoo-devel] IE and Modal Window issue

2008-08-22 Thread Jeroen Smit
I ran into the same issue and was able to implement a workaround yesterday using the following: window.setParent(window.getTopLevelWidget()); window.setModal(true); Make sure to reset the parent to the "real" window's parent before deleting it and also set model back to false. Hope it helps

Re: [qooxdoo-devel] demo issue

2008-08-22 Thread Alexander Back
Hi John, John de la Garza wrote: > on the demo page > > http://demo.qooxdoo.org/current/showcase/#SplitPane > > if you click 'IE BLOG' that page doesn't show up in the side pane but > takes over the whole page You're right. There is some javascript magic which leads to that the 'IE Blog' page

Re: [qooxdoo-devel] Gallery in 0.8

2008-08-22 Thread Tobias Oetiker
> 2008/8/22 Sebastian Werner <[EMAIL PROTECTED]>: > > Petr, > > > > It's useful. Sure. The issue with it was that it has never got any > > love after its initial release with 0.5 years ago. Today one would > > build such a widget with the layout system or render it as a virtual > > widget like the

Re: [qooxdoo-devel] using only layouting for website

2008-08-22 Thread Petr Kobalíček
I think that problem is not file size, but execution of javascript. For example I have problems with firefox. If I refresh my web application, it hungs for 10 seconds or more (Javascript is executed very fast, but after execution and playing with application it hungs). I think this is garbage coll

Re: [qooxdoo-devel] Classic theme 0.8

2008-08-22 Thread Alexander Back
Hi Petr, Petr Kobalíček wrote: > Hi all, > > I'd like to open debate about classic theme in qooxdoo 0.8. I'm now > using 0.7 and Classic theme, I like it. In qooxdoo 0.8 I like both > available themes. > > I just want to give a notice about one thing in Classic theme in new > qooxdoo version (0.