Re: [qooxdoo-devel] To extend class model

2011-11-16 Thread Seldaiendil D. Flourite
> Hey, > I did that recently for small test which is still on my harddrive... but I > attached the diff from that commit which might help you to find the spots > in the generator to change. > Regards, > Martin > > > > > Am 16.11.2011 um 14:50 schrieb thron7: > &g

[qooxdoo-devel] To extend class model

2011-11-16 Thread Seldaiendil D. Flourite
Hi, I have a question about qooxdoo generator. We found it'll be useful for EyeOS apps developers to create some classes like eyeos.App.define() where we can handle things like registering the app, connection with server, default user interface and many other things. We have created it, and it wo

Re: [qooxdoo-devel] Inherit from qx.ui.form.TextField and qx.ui.basic.Image

2011-10-05 Thread Seldaiendil D. Flourite
dd(searchIcon); > > this._searchTextField = new qx.ui.form.TextField(); > this._searchTextField.setLiveUpdate(true); > this._searchTextField.setAppearance("widget"); > this._searchTextField.setPlaceholder("Filter..."); > > ... > > That comes probably

Re: [qooxdoo-devel] Inherit from qx.ui.form.TextField and qx.ui.basic.Image

2011-10-05 Thread Seldaiendil D. Flourite
Hi Tron, thanks for the response, Yes, I did it this way because I found no other way to do it. But you think it's ok to have to wrap (this is create a *getValue* method to call the * TextField* *getValue* method) all *TextField* methods? There are so many, why I have to create so many dummy metho

[qooxdoo-devel] Inherit from qx.ui.form.TextField and qx.ui.basic.Image

2011-10-04 Thread Seldaiendil D. Flourite
> > Hi all, Time ago I tried to inherit from *qx.ui.form.TextField* to create a search field with the magnifier icon. The DOM structure I wanted was like this: - Container DIV > - Decorator > - Content DIV > - TextField INPUT > - Icon IMG But it was impossible, *qx.ui.form.Abstract

Re: [qooxdoo-devel] Contrib with qx as namespace

2011-09-26 Thread Seldaiendil D. Flourite
2011/9/23 thron7 > ** > > > Ah, ok. See, each library has to have its own name space, so they must be > distinct. But they can have common root elements. > > So when you create the library for you eyeos-qx library, you could do this > with > > create-application.py -n eyeos-qx -s qx.ui.

Re: [qooxdoo-devel] Build mode loads scripts

2011-09-23 Thread Seldaiendil D. Flourite
Finally it is working, thanks to you Thron! The main mistake I make was to not extend from "build-script" and "source-script" and to use the same configuration to debug and build, once I fixed this it was just a few hours of testing with '-w' option and it's done. Here is the final config.json fil

Re: [qooxdoo-devel] Contrib with qx as namespace

2011-09-23 Thread Seldaiendil D. Flourite
2011/9/22 thron7 > ** > Seldaiendil, > > > On 09/21/2011 06:22 PM, Seldaiendil D. Flourite wrote: > > One of the things we are focusing is to use EyeOS as a qooxdoo application > (yes, it isn't a qooxdoo application right now). So I organized the files by > name

Re: [qooxdoo-devel] Build mode loads scripts

2011-09-22 Thread Seldaiendil D. Flourite
Oh! Thank you so much! I spent so many days reading the docs ( http://manual.qooxdoo.org/1.5.x/pages/tool/generator_config.html and http://manual.qooxdoo.org/1.5.x/pages/tool/generator_config_articles.html) and creating test jobs without success but you give me clues to find out the problem, thank

[qooxdoo-devel] Build mode loads scripts

2011-09-22 Thread Seldaiendil D. Flourite
Hi all, I'll keep it simple: I have a *config.json* file on */var/www/view/devtools/eyeos* with this: "jobs" : { [...] "base": { "extend": ["common"], "include": ["qx.*", "eyeos.*", "qxjqplot.*"], "compile-options": { "code": { "locales" : "

[qooxdoo-devel] Contrib with qx as namespace

2011-09-21 Thread Seldaiendil D. Flourite
Hi all, We are trying to make things at qooxdoo way here at EyeOS. As you know (or not) EyeOS started using qooxdoo at version 0.8 and then we haven't so much time to learn how qooxdoo can be used. Today we have things clear and we are working on clean all the code. Unfortunally there are so many

Re: [qooxdoo-devel] Handling events from a subclass

2011-09-20 Thread Seldaiendil D. Flourite
uld normally work this way?? > > On Tue, Sep 20, 2011 at 10:23 AM, Seldaiendil D. Flourite > wrote: > > Construct is a function, you are missing the function steatment > > qx.Class.define("myClass.test.parentClass",{ > > properties: { > > login : {

Re: [qooxdoo-devel] Handling events from a subclass

2011-09-20 Thread Seldaiendil D. Flourite
Construct is a function, you are missing the function steatment qx.Class.define("myClass.test.parentClass",{ properties: { login : {check "String", event : "changeLogin} }, members: { main : function(){ var test = new myClass.test.subClass(); }}}); qx.Class.define("myCla

Re: [qooxdoo-devel] about parts tech and core framework class depedent

2011-09-19 Thread Seldaiendil D. Flourite
I dont know so much about parts, but with "build-all" you builds every qooxdoo class, even the ones than you won't use. Use "build" to attach only the dependeces of your application. This will reduce qx.js size a lot. --- Seldaiendil 2011/9/19 linucos > Add: >Can i just use parts tech lik

Re: [qooxdoo-devel] Make API understand new types

2011-09-16 Thread Seldaiendil D. Flourite
the names of code > items. myapp.Controller.define won't match, so unless I'm missing > something, your MVC classes won't be added to the application's > dependencies. > > Regards, > Daniel > > On 09/16/2011 10:53 AM, Seldaiendil D. Flourite wrote: > &g

[qooxdoo-devel] Make API understand new types

2011-09-16 Thread Seldaiendil D. Flourite
Hi all! I'm working on a MVC model over qooxdoo and I would like to build them like this: myapp.Controller.define('myapp.bundle.Controller', { construct: function() { ... }, destruct: function() { ... }, events: { ... }, properties: { ... }, members: { ... }, listeners:

Re: [qooxdoo-devel] Variant and 1.5?

2011-09-08 Thread Seldaiendil D. Flourite
The new word - Environment With the upcoming 1.4 release of qooxdoo we will have a concept that embraces setting, variants, and a third source of global values for an application: values typically detected at run time, like the current JS engine, the browser version, or supported features like

Re: [qooxdoo-devel] How to check/assert a given Class of a function parameter

2011-09-07 Thread Seldaiendil D. Flourite
Don't worry, happens to me too all the time ;) 2011/9/7 Sylvain Gaillard > Hi again and sorry my (stupid) question ... I've taken a deepest look at > qx.core.Assert and found assertInstance ... next time I will open my > eyes when reading the docs ;-) > Best, > Sylvain > > Le 07/09/2011 09:40,

Re: [qooxdoo-devel] How to check/assert a given Class of a function parameter

2011-09-07 Thread Seldaiendil D. Flourite
Of course you have it, it is at qx.core.Assert.assertInstance(var value, Class clazz, String msg) You can write methods like: qx.Class.define('myapp.MyClass', {

Re: [qooxdoo-devel] Private Class

2011-09-06 Thread Seldaiendil D. Flourite
vate. > > Tino > > Am 06.09.2011 um 11:08 schrieb Seldaiendil D. Flourite: > > Hi, I have a issue here, I have my class *myapp.Force* and it needs a > subclass *myapp.Force.Degree *is there a way to make this clas

[qooxdoo-devel] Private Class

2011-09-06 Thread Seldaiendil D. Flourite
Hi, I have a issue here, I have my class *myapp.Force* and it needs a subclass *myapp.Force.Degree *is there a way to make this class private? only myapp.Force must access to it. --- Seldaiendil -- Special Offer -- Downloa

Re: [qooxdoo-devel] Key events not firing on my app

2011-08-26 Thread Seldaiendil D. Flourite
dil, > > Wow, thanks for this huge post! I appreciate your effort in analyzing the > bug and providing a playground example! Well done! > > I will open a bug for this and we will have a look on it pretty soon. > > Tino > > > Am 26.08.2011 um 13:10 schrieb Seldaiendil

Re: [qooxdoo-devel] Key events not firing on my app

2011-08-26 Thread Seldaiendil D. Flourite
gt; } > } > }, It's supposed to not stop the event if the key is not 'Enter', 'Space', 'Escape', or an arrow. Why is it stopping it on any key? *Finally I have a Playground example <http://tinyurl.com/3olkvq6>, here I add a context m

Re: [qooxdoo-devel] Key events not firing on my app

2011-08-26 Thread Seldaiendil D. Flourite
Can it be because the ones than are on the desktop are inside a menu? I see qx.ui.menu.Manager handles keydown, keyup, and keypress and stops propagation if it is a know shortcut. 2011/8/26 Seldaiendil D. Flourite > By the way, I also call textField.getValue() on IE8 and always returns n

Re: [qooxdoo-devel] Key events not firing on my app

2011-08-26 Thread Seldaiendil D. Flourite
By the way, I also call textField.getValue() on IE8 and always returns null doesn't matter if I typed anything, unless I do textField.setValue("") and starts working. Some one told me it has something about migrating from qooxdoo 1.3 to 1.5 --- Seldaiendil 2011/8/26 Seldaien

[qooxdoo-devel] Key events not firing on my app

2011-08-26 Thread Seldaiendil D. Flourite
Hi all, I have a little problem with a TextField, as you know (or not), eyeOS is a big application than manages mini-apps. So I have a little bug than I don't know how to fix: I extend from TextField and add on the constroctor events for debug: qx.Class.define('eyeos.ui.form.TextField', { > exte

Re: [qooxdoo-devel] Calling included mixin methods from constructor

2011-08-25 Thread Seldaiendil D. Flourite
Sorry, I missunderstood your problem, trying to found a way to do it... 2011/8/25 Seldaiendil D. Flourite > If you want to set initial values for properties I think you can use the > init configuration: > > > qx.Class.define("MyClass", { > > extend: qx.c

Re: [qooxdoo-devel] Calling included mixin methods from constructor

2011-08-25 Thread Seldaiendil D. Flourite
If you want to set initial values for properties I think you can use the init configuration: qx.Class.define("MyClass", { extend: qx.core.Object, include: [qx.ui.core.MBlocker], properties: { blockerColor: { // refine means we are modifying an existing property refine

Re: [qooxdoo-devel] Add vadilation to property

2011-08-25 Thread Seldaiendil D. Flourite
Bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=5558 Thanks to all --- Seldaiendil 2011/8/25 Derrell Lipman > > > On Wed, Aug 24, 2011 at 12:54, Marc Puts > wrote: > >> Ah, now I see what you mean. >> >> You're right, I think this is not supported right now. At least not >> without doing

Re: [qooxdoo-devel] Add vadilation to property

2011-08-24 Thread Seldaiendil D. Flourite
> Hi Seldaiendil, > > I think you can use validate and check this with your own function. > > > http://manual.qooxdoo.org/current/pages/core/defining_properties.html#validation-of-incoming-values > > apply should only be used, if the value has correct changed. > > Gree

Re: [qooxdoo-devel] Appending a value to an Array property - possible bug/unexpected behavior?

2011-08-24 Thread Seldaiendil D. Flourite
Actually, the problem is than you are not setting the array. When you do: var arr = this.getArray(); arr.push("hi"); this.setArray(arr); The last line does nothing, because this.array property already has a pointer to the array, if you just do: var arr = this.getArray(); arr.push("hi"); The pr

[qooxdoo-devel] Add vadilation to property

2011-08-24 Thread Seldaiendil D. Flourite
Hi, I'm trying to develop a widget inherited from qx.ui.control.DateChooser to not allow the user to select a pased date. So what I want is when setting property 'value' check it and if it's not in a range I want to cancel the process. I tryed with: // overwrited _applyValue: function(*valu

Re: [qooxdoo-devel] Variable Variable name

2011-08-22 Thread Seldaiendil D. Flourite
I'm with Marc, sure 'this' is not the class instance. If you are executing the second for inside a non-member function (e.g.: a callback) maybe this is not what you expect. Try pasting a little bit more code, to see in wich type of function are you executing this. Can you provide a playground exa

Re: [qooxdoo-devel] Variable Variable name

2011-08-22 Thread Seldaiendil D. Flourite
No, you can't use eval xD Actually you can, but you should not. Sorry CaDyMaN, but eval kills kittens, to access properties dinamically you can use [] for (var i = 1; i < 7; i++) { > this["__txtInfo" + i] = new qx.ui.form.TextField(...); > container.add(this["__txtInfo" + i], { row: i, column

Re: [qooxdoo-devel] Incorect code at API documentation

2011-08-19 Thread Seldaiendil D. Flourite
Copy-paste fail? I don't see anything =S 2011/8/19 CaDyMaN > This code have an error ... > > > > This should by: > > > > > > > -- > View this message in context: > http://qooxdoo.678.n2.nabble.com/Incorect-code-at-API-documentation-tp6704323p6704323.html > Sent from the qooxdoo mailing list arch

Re: [qooxdoo-devel] (Bug ?) Unable to use qx.lang.Func.curry() with a setProperty

2011-08-19 Thread Seldaiendil D. Flourite
ple I gave the error is the one you mentionned. > However in our own app I still have the problem which is NOT the one > you mention a fix for... I will try to reproduce in a sample app... > > On Fri, Aug 19, 2011 at 1:50 PM, Seldaiendil D. Flourite > wrote: > > > > Hi

Re: [qooxdoo-devel] (Bug ?) Unable to use qx.lang.Func.curry() with a setProperty

2011-08-19 Thread Seldaiendil D. Flourite
Hi The problem is not in the setter, is than when you curry the function and call it you removed the scope so you are not executing setLayout on 'page' you are executing it on global scope: window.setLayout and it fails. To fix it you have to bind the function to page, so it will always be called

Re: [qooxdoo-devel] [POLL] Add a Dialog contrib equivalent into the framwork

2011-08-19 Thread Seldaiendil D. Flourite
+1 2011/8/19 Gian Marco Gherardi > +1 > Il giorno 18/lug/2011 18:10, "Aldric MONNET" ha > scritto: > > > Hi, > > > > qooxdoo is now et version 1.5. > > I think that implementing a Dialog contrib ( > http://demo.qooxdoo.org/contrib/demobrowser/#Dialog~0.4%2Fdefault%2F1.4%2Findex.html) > equivale

Re: [qooxdoo-devel] Antw: Re: Singleton Vs. Static

2011-08-18 Thread Seldaiendil D. Flourite
program. This way you get the benefit of a singleton, > but load the management of the instance off to the caller. > > T. > > [1] http://sites.google.com/site/steveyegge2/singleton-considered-stupid > > > On 08/18/2011 05:45 PM, Seldaiendil D. Flourite wrote: > > No idea?

Re: [qooxdoo-devel] Antw: Re: Singleton Vs. Static

2011-08-18 Thread Seldaiendil D. Flourite
No idea? 2011/8/17 Seldaiendil D. Flourite > But a static class can have fields and methods to access this fields. > > The problem is than I am developing for 3rd party programmers and I need to > make the API as easy as I can so I dont want to force the programmer to > acce

Re: [qooxdoo-devel] Submenu position

2011-08-17 Thread Seldaiendil D. Flourite
} > > return result; > } > }, > > In your example the menu has the submenu state. > > Cheers, > Chris > > [1] http://demo.qooxdoo.org/1.5/apiviewer/#qx.ui.core.MPlacement~offset > <http://demo.qooxdoo.org/1.5/apiviewer/#qx.ui.c

[qooxdoo-devel] Submenu position

2011-08-17 Thread Seldaiendil D. Flourite
Hi all, I have a custom menu on qooxdoo, just like View => Syntax on http://demo.qooxdoo.org/current/demobrowser/#widget~MenuBar.html but the submenu is a custom widget inherited from qx.ui.menu.AbstractButton. But when the submenu is show it looks strage because it opens 3px over the current menu

Re: [qooxdoo-devel] Antw: Re: Singleton Vs. Static

2011-08-17 Thread Seldaiendil D. Flourite
tatic class doesn't support properties, > events, mixins, interfaces, etc. > > My understanding from static class is more like a class with a collection > of functions (util class) and a singleton is a real object from the OO > point. Hope this hepls. > > Cheers, > Chris

Re: [qooxdoo-devel] is it possible to limit the number of visible lines or the size of a list?

2011-08-17 Thread Seldaiendil D. Flourite
I think he wants to set the list height just to adapt to 3 items height, rest of the items over the scrollbar, am I right? 2011/8/17 Christian Hagendorn > Hi Herman, > > sorry, it is not clear for me, what you want you mean. > > The virtual list has the possibility to filter items, maybe that

[qooxdoo-devel] Singleton Vs. Static

2011-08-17 Thread Seldaiendil D. Flourite
Hi all, I want to discuss a very used pattern in Qooxdoo. I can't understand what advantages has a Singleton class over the Static class. In others languages is not the same a Static class than a instance, but in Javascript both are objects. I suppose you have some motivation to add a middle-step

[qooxdoo-devel] Original image size

2011-08-16 Thread Seldaiendil D. Flourite
Hi all, I have a really basic problem but can't found the solution, I have a qx.ui.basic.Image object and I want allow the user to set and open any url image. But I need to center (keep size), scale (keep ratio) or expand (to any width or height) depending of the user. I mean, the user has a TextF

Re: [qooxdoo-devel] Where is the widget ID Set?

2011-08-16 Thread Seldaiendil D. Flourite
By the way, to see already defined child controls you can use the API, at the bottom of the page. Child controls are not shown over inheritance, you must see all base classes to know existing child controls. http://demo.qooxdoo.org/1.5.x/apiviewer/#qx.ui.basic.Atom 2011/8/16 Seldaiendil D

Re: [qooxdoo-devel] Where is the widget ID Set?

2011-08-16 Thread Seldaiendil D. Flourite
Hi, Child controls are managed internally by widget class. To create child controls you must override widget method *_createChildControlImpl*, add your child controls and call the base class *_createChildControlImpl* method: *qx.Class.define('myapp.MyWidget', { > * * extend: qx.ui.core.Widget

Re: [qooxdoo-devel] howto: my first qooxdoo "patch"

2011-08-16 Thread Seldaiendil D. Flourite
Hi, I haven't many experience on Qooxdoo, but in the API the patch method recives a Class and a Mixin Class.patch(Class clazz, Mixin mixin) Maybe the problem is you are trying to patch one cl

Re: [qooxdoo-devel] Proposal: return "this" in generated setters for properties

2011-08-05 Thread Seldaiendil D. Flourite
at i'm proposing is to implement a (little) feature that enable > everyone to program the way he likes more. > > > Gian Marco Gherardi > http://gianmarco.gherardi.me > > > > On Fri, Aug 5, 2011 at 3:36 PM, Derrell Lipman > wrote: > > On Fri, Aug 5, 2

Re: [qooxdoo-devel] Proposal: return "this" in generated setters for properties

2011-08-05 Thread Seldaiendil D. Flourite
Hi, I found this as a issue too, sometimes I would like to do: *this.add( > new qx.ui.basic.Label("Hi").setFont( > new qx.bom.Font("arial").setBold(true) > ) > );* Instead I have to do *this.add( > new qx.ui.basic.Label("Hi").set({ > font: new qx.bom.Font("arial").set({ > b

Re: [qooxdoo-devel] Hi from eyeOS

2011-07-27 Thread Seldaiendil D. Flourite
r the manual for a description: > > http://manual.qooxdoo.org/1.5.x/pages/gui_toolkit/ui_decorators.html#decoration-theme > Regards, > Martin > > Am 27.07.2011 um 10:21 schrieb Seldaiendil D. Flourite: > > Hi Martin, > > Thanks for the welcome! :) > > Do you mean

Re: [qooxdoo-devel] Hi from eyeOS

2011-07-27 Thread Seldaiendil D. Flourite
Hi Martin, Thanks for the welcome! :) Do you mean there are new decorators at qx.ui.decoration? I cannot found them --- Seldaiendil eyeOS developer 2011/7/26 Martin Wittemann > Hello Sel, > first of all, welcome! > > I asked some questions until now, but I did not introduce myself as a eyeO

Re: [qooxdoo-devel] Compile order

2011-07-23 Thread Seldaiendil D. Flourite
Hi all, Well finally it worked, I tryed pansyasan idea and it works for now, I can migrate the methods one by one now to a static class. Thank you two for your help! --- Seldaiendil 2011/7/23 thron7 > > If > > I could update to qooxdoo 1.5 it's because the migration change were > > minimal,

Re: [qooxdoo-devel] Compile order

2011-07-23 Thread Seldaiendil D. Flourite
2011/7/22 thron7 > I think I get what you're up against. Of course I'm not in your shoes, but > I wouldn't be so shy if I were. This is an almost mechanical refactoring. > What will you do when you have real tough refac's to do, that involve > conceptual/architectural changes?! You wrote you just

[qooxdoo-devel] Hi from eyeOS

2011-07-22 Thread Seldaiendil D. Flourite
Hi All once more time! I asked some questions until now, but I did not introduce myself as a eyeOS developer because I thought you didn't know us, but my boss, Jose Carlos Norte; told me he used to talk to you past year when he was developing eyeOS. So let me introduce, I am Seldaiendil (you can

Re: [qooxdoo-devel] Compile order

2011-07-22 Thread Seldaiendil D. Flourite
, but I did not found a way to do it. Thanks, --- Seldaiendil 2011/7/22 thron7 > > > On 07/22/2011 05:57 PM, Seldaiendil D. Flourite wrote: > > Hi Tino, > > > > Thanks for your answer, you are right, basefile is not a class, I > > tryed using add-script, but it ad

Re: [qooxdoo-devel] Compile order

2011-07-22 Thread Seldaiendil D. Flourite
t and continue with other task, I will response next week if it works. Thank you so much --- Seldaiendil 2011/7/22 thron7 > ** > > > On 07/22/2011 03:36 PM, Seldaiendil D. Flourite wrote: > > Hi again, > > I'm trying to compile my app with qooxdoo's generate.p

Re: [qooxdoo-devel] Compile order

2011-07-22 Thread Seldaiendil D. Flourite
uot; : "resource/qx/mobile/js/iscroll.js" > } > ] > ... > > http://manual.qooxdoo.org/1.5.x/pages/tool/generator_config.html > > The script will be loaded before all other scripts. > > Tino > > > > Am 22.07.2011 um 15:36 schrieb Seldaiendil D. Flourit

[qooxdoo-devel] Compile order

2011-07-22 Thread Seldaiendil D. Flourite
Hi again, I'm trying to compile my app with qooxdoo's generate.py. My app has a Manifest.json and the skeleton and compiles ok, but my app has a "base file" than contains common functions and utils without a qooxdoo class, so I need this class to be compiled at the top of my application files I me

Re: [qooxdoo-devel] Replace qx.ui.core.MResizable Mixin

2011-07-15 Thread Seldaiendil D. Flourite
SAKsystems* > > Inh. Mustafa Sak > > Varrelmannstr. 16 > > 30453 Hannover > > Tel. +49 511 / 165 969 40 > > Fax +49 511 / 165 969 49 > > Mobil +49 163 / 312 6144 > > http://www.saksys.de > > i...@saksys.de

Re: [qooxdoo-devel] Replace qx.ui.core.MResizable Mixin

2011-07-15 Thread Seldaiendil D. Flourite
69 49 > > Mobil +49 163 / 312 6144 > > http://www.saksys.de > > i...@saksys.de > > STEUER-Nr. 2613817458 > > ** ** > -- > > *Von:* Seldaiendil D. Flourite [mailto:seldaiend...@gmail.com] > *Gesendet:* Freitag, 15. Juli 2011 16

[qooxdoo-devel] Replace qx.ui.core.MResizable Mixin

2011-07-15 Thread Seldaiendil D. Flourite
Hi all, I have a little problem with *qx.ui.window.Window*, I need to let the user resize ONLY from the bottom-right corner, but the current mixin * qx.ui.core.MResizable* cannot do it so I want to create a new mixin to implement it, but how can I remove *qx.ui.core.MResizable* from my * qx.ui.win

Re: [qooxdoo-devel] Inherit theme appearance ID

2011-07-11 Thread Seldaiendil D. Flourite
style: function(states, styles) { > return { > paddingRight: 20 > }; > } > } > } > }); > 2011/7/11 Seldaiendil D. Flourite > Hi all, > > I am trying to extend Aristo theme starting by window appearance: > > &q

[qooxdoo-devel] Inherit theme appearance ID

2011-07-11 Thread Seldaiendil D. Flourite
Hi all, I am trying to extend Aristo theme starting by window appearance: "window" : { ... }, > "window/captionbar" : { > style : function(states) { > return { > decorator: "window-captionbar", > textColor: states.active? "text-label" : "text-disa

[qooxdoo-devel] Fastest way to add HTML

2011-07-04 Thread Seldaiendil D. Flourite
Hi, I have a little problem with Qooxdoo, I've inherited from widget to create a component works like a command line terminal, it means you can type text on a input and it will be added to a log with the server response. The problem is than with just a few lines (100 or 150) the time needed to add

[qooxdoo-devel] Button background images

2011-06-21 Thread Seldaiendil D. Flourite
Hi, I'm new at Qooxdoo, at my work we are trying to migrate to Qooxdoo but we have a little problem, no matter how I try I can't found a way to change the buttons background image. I have a qx.ui.toolbar.Button and I need it to show a background while there is no event on it. And it's maybe I als

[qooxdoo-devel] Button background images

2011-06-21 Thread Seldaiendil D. Flourite
Hi, I'm new at Qooxdoo, at my work we are trying to migrate to Qooxdoo but we have a little problem, no matter how I try I can't found a way to change the buttons background image. I have a qx.ui.toolbar.Button and I need it to show a background while there is no event on it. And it's maybe I als