Re: [qooxdoo-devel] include a class from an other js-file

2011-02-03 Thread josefkoller
thanks to booth. Ok, each class a file, same names. And no possiblity to add more than one to the external js-file? If I have only that "short constructs" like in my example before I get a lot of files. But it is not possible I will structure my code like in the linked examples. Josef -- Vie

Re: [qooxdoo-devel] include a class from an other js-file

2011-02-03 Thread thron7
On 02/03/2011 01:06 PM, josefkoller wrote: > > Hi, > > If I use a own class in my Application.js I use till now this method: > > qx.Class.define("imkerei.Application", > { >extend : qx.application.Standalone, > >members : >{ > main : function() > { > qx.Class.define("c

Re: [qooxdoo-devel] include a class from an other js-file

2011-02-03 Thread Andreas Ecker
Hi Josef, it seems you could really benefit from reading up on some qooxdoo fundamentals first. That should answer many questions upfront, that you likely would run into later. I'd like to suggest you read up on the material in the "Getting Started" section, http://manual.qooxdoo.org/current/pag

[qooxdoo-devel] include a class from an other js-file

2011-02-03 Thread josefkoller
Hi, If I use a own class in my Application.js I use till now this method: qx.Class.define("imkerei.Application", { extend : qx.application.Standalone, members : { main : function() { qx.Class.define("custom.MovableLabel", { extend : qx.ui.basic.Label,