Re: [qooxdoo-devel] Confuse with qx.ui.window.Window!

2012-01-25 Thread linucos
Hi, Thanks for reply. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Confuse-with-qx-ui-window-Window-tp7209917p7226201.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Keep Your De

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-25 Thread Werner Thie
Hi Simon We see certain problems in IE9, if running in downgraded compatibility mode (advertises itself as IE7), like images not being shown or scrollbars being displayed in odd places. The downgrade (compatibility icon) vanishes by setting in your html. HTH, Werner On 25.01.2012 22:15,

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-25 Thread Tristan Koch
Hi Simon, we support IE6+. Which version of qooxdoo are you using? Regards Tristan Am 25.01.2012 um 22:15 schrieb Simon White: > Hi > > I have been building a RIA and using the Chrome browser. Today I tried > the application in FireFox, IE9, Opera and the application worked > perfectly in

[qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-25 Thread Simon White
Hi I have been building a RIA and using the Chrome browser. Today I tried the application in FireFox, IE9, Opera and the application worked perfectly in all but IE9. In IE9 the widgets were located incorrectly with missing borders and the display was painfully slow. Is IE9 not supported? B

[qooxdoo-devel] Understanding Class Members Question

2012-01-25 Thread Simon White
Hi When I use the Chrome Debugger and look at the my JSON store object I notice that not all the members I defined in my class are listed on the store. If I look at the "__proto__" object everything is there. The members of my store are defined as: members: { __array : [], __changedI

[qooxdoo-devel] AddListener Question

2012-01-25 Thread Simon White
Hi I have a JSON store class with the following method: setupURL : function() { this.setUrl(null); if (this.__cmd == "SaveItem"){ var loReq = new dcbase.reqXhr({set: {url: "SaveItem."+this.__scriptMap}}); loReq.setRequestData(this.__table+"~"+"ID~"+this.__changedItems.join("

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