Re: [qooxdoo-devel] Customizing decoration theme

2011-12-05 Thread alexandr
Hi, Mustafa! Mustafa Sak-3 wrote > > better you are posting your complete decorator object. > What decorator object do you mean? In my previous post I have posted full code of my Decoration.js file. And to get toolbar with my own backgroundImage I made changes only in file Decoration.js, and

Re: [qooxdoo-devel] Calling superclass function overridden in the calling class from another function

2011-12-05 Thread Stefan Andersson
T! >this.constructor.superclass.prototype.foo.apply(this, arguments); >though you should probably re-think your class design if this becomes >necessary. Long...I agree, but it seems to be the only way if you don't create a new function with a different name, putting it inside _createChildCon

Re: [qooxdoo-devel] Announcing a new version of Kameleoon!

2011-12-05 Thread Benjamin Dreux
hi. On the web page you give the link there is a dead link. When clicking on the upper left hand corner. Regards Le 5 décembre 2011 12:00, Jean-Noël Rivasseau a écrit : > Hello all, > > we proudly announce a new version of Kameleoon, an application created > with Qooxdoo and which was already fe

Re: [qooxdoo-devel] Icon combining - meta files in libraries

2011-12-05 Thread thron7
On 12/05/2011 06:40 PM, cbrown wrote: > Thank you for the quick response. > > Using the library namespace under the resource folder fixed the issue. > > One more thing I've noticed. Some png images get accessed directly in IE9 > bypassing the combined image. Looking at the code in the debugger, t

Re: [qooxdoo-devel] Icon combining - meta files in libraries

2011-12-05 Thread cbrown
Thank you for the quick response. Using the library namespace under the resource folder fixed the issue. One more thing I've noticed. Some png images get accessed directly in IE9 bypassing the combined image. Looking at the code in the debugger, this appears to happen when the AlphaImageLoader f

Re: [qooxdoo-devel] Icon combining - meta files in libraries

2011-12-05 Thread thron7
Chris, On 12/05/2011 04:33 PM, cbrown wrote: > Hi, > > I have successfully used icon combining for the icons in my application > namespace and picked up some of the combined images in the Qooxdoo > framework. > > I am now trying to extend the use of combined images to the libraries > referenced in

[qooxdoo-devel] Announcing a new version of Kameleoon!

2011-12-05 Thread Jean-Noël Rivasseau
Hello all, we proudly announce a new version of Kameleoon, an application created with Qooxdoo and which was already featured in the Qooxdoo weekly news 18 months ago. At the time our application was more a technology demo / preview. Now, after about 18 more monthes of hard work, we have a nice po

Re: [qooxdoo-devel] Calling superclass function overridden in the calling class from another function

2011-12-05 Thread thron7
On 12/05/2011 09:03 AM, Stefan Andersson wrote: How would you best call an overridden function in the calling class from another function? this.constructor.superclass.prototype.foo.apply(this, arguments); though you should probably re-think your class design if this becomes necessary. T.

Re: [qooxdoo-devel] Calling superclass function overridden in the calling class from another function

2011-12-05 Thread Stefan Andersson
Yes, extended! but your proposal does not seem to work. This example: qx.Class.define("test", { extend : qx.ui.core.Widget, include : [ qx.ui.core.MRemoteChildrenHandling, qx.ui.core.MRemoteLayoutHandling ], getChildrenContainer : function() { alert("Hello Derrell!");

[qooxdoo-devel] Icon combining - meta files in libraries

2011-12-05 Thread cbrown
Hi, I have successfully used icon combining for the icons in my application namespace and picked up some of the combined images in the Qooxdoo framework. I am now trying to extend the use of combined images to the libraries referenced in the config.json file. The libraries contain *.meta files an

Re: [qooxdoo-devel] Render a list of clickable widgets

2011-12-05 Thread TheoSoulie
In facts, I want the exact oposite : I want the scroll to stay at the same place wether I click BT0 or BT1 on IE. (the chrome and firefox behavior in my examples) Thanks. Théo -- View this message in context: http://qooxdoo.678.n2.nabble.com/Render-a-list-of-clickable-widgets-tp7062202p7062893.

Re: [qooxdoo-devel] Customizing decoration theme

2011-12-05 Thread info
Hi Alexandr, better you are posting your complete decorator object. But for now I have some advice for you: 1. did you set #asset in Decoration.js ? 2. did you tried to set backgroundImage: "loan_app_qx/toolbar-gradient-red.png" ? Hope could give you some usefull hints. regards Mustafa Sak

[qooxdoo-devel] Customizing decoration theme

2011-12-05 Thread alexandr
Hi, Qooxdoo Team! I want to change backgroundImage of qx.ui.toolbar.Toolbar. I think, the best way to do this is to customize existing theme. I try the following: "toolbar-gradient-red.png" is situated in folder "resource/loan_app_qx/". But there is no any effect, my image is not applied. Wher

Re: [qooxdoo-devel] Calling superclass function overridden in the calling class from another function

2011-12-05 Thread Derrell Lipman
On Mon, Dec 5, 2011 at 03:03, Stefan Andersson wrote: > How would you best call an overridden function in the calling class from > another function? > > class A { > function A { > } > } > > class B { > // overridden > function A { > } > function B { >call function A in class A > } >

[qooxdoo-devel] Calling superclass function overridden in the calling class from another function

2011-12-05 Thread Stefan Andersson
How would you best call an overridden function in the calling class from another function? class A { function A { } } class B { // overridden function A { } function B { call function A in class A } } this.superclass for static classes, but for instance classes? Do you need to use

Re: [qooxdoo-devel] removing childs with child Control

2011-12-05 Thread Tino Butz
Hi, You can always call container.remove(child). removeChild is a dom.Element method and has nothing to do with the widget system. Best regards, Tino Am 02.12.2011 um 11:18 schrieb xina towner: Hi, I'm trying to delete an explicit child form a container, I create the child control as in th