Re: [qooxdoo-devel] Include external script

2012-01-25 Thread A Matías Quezada
Yes! this might work, load the scripts on the code and then start the application, good idea Derrell! I will try this separate-loader config too, thanks Thron! 2012/1/25 thron7 > > > On 01/25/2012 02:14 PM, Derrell Lipman wrote: > > Application.js: > > > > members : > > { > > main : function

Re: [qooxdoo-devel] Include external script

2012-01-25 Thread thron7
On 01/25/2012 02:14 PM, Derrell Lipman wrote: > Application.js: > > members : > { > main : function() > { > var loader = new qx.io.ScriptLoader(); > loader.load( > "/your/script", > function(status) > { > this._main(); > }, > this); > } > > _m

Re: [qooxdoo-devel] Include external script

2012-01-25 Thread thron7
On 01/25/2012 01:18 PM, A Matías Quezada wrote: > Hi all, > > I'm trying Qooxdoo but I need some files to be included on the > generated js: "security.js" and "supply.js". They do not depend on > qooxdoo and I need it to be loaded before Qooxdoo. I cannot modify the > HTML page. > > I've tried

Re: [qooxdoo-devel] Include external script

2012-01-25 Thread Derrell Lipman
2012/1/25 A Matías Quezada > Hi all, > > I'm trying Qooxdoo but I need some files to be included on the generated > js: "security.js" and "supply.js". They do not depend on qooxdoo and I need > it to be loaded before Qooxdoo. I cannot modify the HTML page. > > I've tried with "add-script" configu

Re: [qooxdoo-devel] Include external script

2012-01-25 Thread A Matías Quezada
Me: > I'm trying Qooxdoo but I need some files to be included on the > generated js: "security.js" and "supply.js". They do not depend on > qooxdoo and I need it to be loaded before Qooxdoo. *I cannot modify the > HTML page.* > Chris: > when "add-script" is to late for you. I would try to *a

Re: [qooxdoo-devel] Include external script

2012-01-25 Thread Christian Hagendorn
Hi, when "add-script" is to late for you. I would try to add the needed scripts to the index.html before qooxdoo is added with a script tag. Cheer, Chris Am 25.01.2012 13:18, schrieb A Matías Quezada: > Hi all, > > I'm trying Qooxdoo but I need some files to be included on the > generated js:

[qooxdoo-devel] Include external script

2012-01-25 Thread A Matías Quezada
Hi all, I'm trying Qooxdoo but I need some files to be included on the generated js: "security.js" and "supply.js". They do not depend on qooxdoo and I need it to be loaded before Qooxdoo. I cannot modify the HTML page. I've tried with "add-script" configuration, but it loads them after qooxdoo i