Re: [qooxdoo-devel] Issues using DockLayout

2006-08-04 Thread Derrell . Lipman
"Alexander Trauzzi" <[EMAIL PROTECTED]> writes: > In trying to use the DockLayout manager, I get the following error: > > -=- > 000469 ERROR: qx.ui.layout.DockLayout(70): Could not layout child > [object qx.ui.basic.Label] through layout handler: Error - > qx.renderer.layout.DockLayoutImpl: It is

[qooxdoo-devel] Issues using DockLayout

2006-08-04 Thread Alexander Trauzzi
In trying to use the DockLayout manager, I get the following error:-=-000469 ERROR: qx.ui.layout.DockLayout(70): Could not layout child [object qx.ui.basic.Label] through layout handler: Error - qx.renderer.layout.DockLayoutImpl: It is not allowed to define any horizontal dimension for 'vertical'

Re: [qooxdoo-devel] Namespaces trouble

2006-08-04 Thread Florian Arndt
> * context menus don't seem to work anymore They do. Don't know what was wrong. I made a minimal example with conversion to namespace objects and it worked. Sorry for this point! Florian - Take Surveys. Earn Cash. Influence

[qooxdoo-devel] Small Loginbox-Example

2006-08-04 Thread Alexander Braitschev
Hi List,   as i'm also new with qooxdoo and have had a hard time exploring how to use it and getting things running (the best thing around, i've tested most of them, congratulations).   Though browsing through the Mailinglistarchives, the api and the sources took long enough i want to contribute

Re: [qooxdoo-devel] Table layout

2006-08-04 Thread Christian Boulanger
David Perez schrieb: > Hi, > > I've read all the layout that Qooxdoo has in: > http://old.qooxdoo.org/documentation/layout-managers > > But I also need the "table" layout (items aligned on rows and columns, > with possible colspans). > Is this possible? Or do I have to code my own layout? > > Tha

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread Christian Boulanger
Andreas Ecker schrieb: > Can anybody give us a hint please, why this ask for help is being > ignored? This fact is certainly not encouraging us to meet people's > expectations for providing even more articles (e.g. for qooxdoo 0.6). > > Sorry, just being sad, :-( > > Andreas > Hi Andreas, I ca

[qooxdoo-devel] A note to consider.

2006-08-04 Thread Alexander Trauzzi
Paraphrasing Andreas slightly: "Can anybody give us a hint please, why this ask for help is being ignored?"(Hopefully I understand you correctly that you are wondering why people aren't coming and helping with documentation & articles?) Personally, I am not ignoring any request for help making docu

Re: [qooxdoo-devel] Aliases and Themes in Namespaces

2006-08-04 Thread Jim Hunter
I agree 100%. As soon as I get done chasing down this other bug that I am working on (different application all together) I will be able to get back to qooxdoo and 'solve' my icon problems.Thanks for the detailed assistance. Jim On 8/4/06, Erik A. Onnen <[EMAIL PROTECTED]> wrote: Previous examples

Re: [qooxdoo-devel] Aliases and Themes in Namespaces

2006-08-04 Thread Erik A. Onnen
Previous examples I had seen didn't include the setIconTheme and setWidgetTheme calls. This does work for me in the sense that the app uses the right icons. That is, until I change themes. If I allow users to change themes later, the change in theme will overwrite my aliases. I raised the point in

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread Andreas Ecker
Howdy! David Perez wrote: > If the documentation were a wiki, I would have updated > http://old.qooxdoo.org/documentation/inheritance Directly from http://qooxdoo.org/documentation : "We are currently switching from a typical CMS to a wiki engine for our entire homepage. All community members

Re: [qooxdoo-devel] How do I clear a qx.ui.tree.Tree in namespace branch?

2006-08-04 Thread Dietrich Streifert
Just calling removeAll to the qx.ui.tree.Tree object is not enough. It seems that the selection manager is not kept in sync with the remove call. After re-populating the tree and clicking on the first item I get the following on the debug console: qx.ui.tree.TreeFile[HASHCODE:3798] 115469: M

Re: [qooxdoo-devel] QxFieldset and automatic layout

2006-08-04 Thread David Perez
Thanks for your hint, it seems to work. At first I thought that Qooxdoo layout was less powerfull than CSS+HTML, but now I'm checking that it's more powerful that it appears. 鹏举马 schrieb: > You can put a QxBoxLayout into the QxFieldSet first. > > 2006/8/4, David Perez <[EMAIL PROTECTED]

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread David Perez
Hi Til, You were right, I meant this.superclass and also it is dangerous. The Dojo approach for managing inheritance seems smarter: http://manual.dojotoolkit.org/WikiHome/DojoDotBook/Book20 They provide the "this.inherited" mechanism for this purpose. Til Schneider schrieb: proto.func = f

Re: [qooxdoo-devel] How do I clear a qx.ui.tree.Tree in namespace branch?

2006-08-04 Thread Florian Arndt
Hi Dietrich, > Maybe one of the implementors can open my eyes on how this is implemented? I don't know specificially how Qooxdoo does it, but you would usually recursively go trough the tree node for node (bottom to top) and remove the nodes and folders one-by-one by disposing them and re-renderin

[qooxdoo-devel] Namespaces trouble

2006-08-04 Thread Florian Arndt
Hi guys, I've lately stumbled across a few things I had running with 0.5.3 which do not anymore in namespace branch (after changing class names accordingly of course ;-). Amongst them: * context menus don't seem to work anymore * QxGalleryLists look like crap (also with stylesheets in the demo th

Re: [qooxdoo-devel] How do I clear a qx.ui.tree.Tree in namespace branch?

2006-08-04 Thread Dietrich Streifert
Again answering myself: removeAll is the method. Maybe one of the implementors can open my eyes on how this is implemented? Thank you. Dietrich Streifert schrieb: > Hello Everybody, > > how can I remove the contents of a TreeFolder (i.e. the root folder)? > > I searched around in the examples a

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread Til Schneider
>>> proto.func = function() { >>> // How can I call here BaseClass.func()? >>> return 'In derived class'; >>> } >>> >> BaseClass.func.call(this, param1, param2); > Or even better: > > proto.func = function() { > superclass.func.call(this); > return 'In derived class'; > >

[qooxdoo-devel] How do I clear a qx.ui.tree.Tree in namespace branch?

2006-08-04 Thread Dietrich Streifert
Hello Everybody, how can I remove the contents of a TreeFolder (i.e. the root folder)? I searched around in the examples and the source but cant' figure this out: Once I know this I'll provide a method clear for TreeFolder which exactly does this. Thank you for your help. Best regards --

Re: [qooxdoo-devel] QxFieldset and automatic layout

2006-08-04 Thread 鹏举马
You can put a QxBoxLayout into the QxFieldSet first.2006/8/4, David Perez <[EMAIL PROTECTED]>: Hi,I have seen that QxFieldset inherits from QxCanvasLayout, so it doesn'tsupport automatic of child elements, like QxBoxLayout does.If I need automatic layout, do I have to create another version of QxFi

[qooxdoo-devel] Table layout

2006-08-04 Thread David Perez
Hi, I've read all the layout that Qooxdoo has in: http://old.qooxdoo.org/documentation/layout-managers But I also need the "table" layout (items aligned on rows and columns, with possible colspans). Is this possible? Or do I have to code my own layout? Thanks in advance for any answer. David

[qooxdoo-devel] QxFieldset and automatic layout

2006-08-04 Thread David Perez
Hi, I have seen that QxFieldset inherits from QxCanvasLayout, so it doesn't support automatic of child elements, like QxBoxLayout does. If I need automatic layout, do I have to create another version of QxFieldset that extends from QxLayoutBox instead? __

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread David Perez
Thanks Til, Or even better: proto.func = function() { superclass.func.call(this); return 'In derived class'; } In this way, we don't need to know the name of the superclass. If the documentation were a wiki, I would have updated http://old.qooxdoo.org/documentation/inheritance Til

Re: [qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread Til Schneider
> proto.func = function() { > // How can I call here BaseClass.func()? > return 'In derived class'; > } BaseClass.func.call(this, param1, param2); - Take Surveys. Earn Cash. Influence the Future of IT Join SourceFo

[qooxdoo-devel] Inheritance and calling superclass methods

2006-08-04 Thread David Perez
Hi, I haven't found any example in the Qooxdoo source code about calling a superclass method of a redefined method of a superclass. Is this easily possible? Sample source code: function BaseClass() { } BaseClass.extend(Object, 'BaseClass'); proto.func = function() { return 'In base class'

Re: [qooxdoo-devel] Aliases and Themes in Namespaces

2006-08-04 Thread Jim Hunter
I placed the three lines at the top of my user file before anything else gets called. I;ll try your method to see if that helps.Thanks,JimOn 8/3/06, Dietrich Streifert <[EMAIL PROTECTED]> wrote: Where do you place the defineAlias calls?It's working perfectly for me if I do the calls like this: