Re: [qooxdoo-devel] Enabled property

2007-03-01 Thread Sebastian Werner
dperez schrieb: > With this change, Spinner supports well the enabled property: > > qx.ui.core.Parent.prototype._modifyEnabled = function(val) { > qx.ui.core.Widget.prototype._modifyEnabled.apply(this, arguments); > var h = this.getChildren(); > for (var i = 0; i < h.length; i++)

Re: [qooxdoo-devel] Enabled property

2007-03-01 Thread dperez
With this change, Spinner supports well the enabled property: qx.ui.core.Parent.prototype._modifyEnabled = function(val) { qx.ui.core.Widget.prototype._modifyEnabled.apply(this, arguments); var h = this.getChildren(); for (var i = 0; i < h.length; i++) { h[

Re: [qooxdoo-devel] Enabled property

2007-03-01 Thread Sebastian Werner
dperez schrieb: > Hi, > > Some widgets like qx.ui.form.FieldText correctly implement the enabled > property, but others like Spinner and Table don't react to this property. > > Maybe because they are containers. Could containers change the enabled > state of their children? They should and they

[qooxdoo-devel] Enabled property

2007-03-01 Thread dperez
Hi, Some widgets like qx.ui.form.FieldText correctly implement the enabled property, but others like Spinner and Table don't react to this property. Maybe because they are containers. Could containers change the enabled state of their children? Regards, David -- View this message in context: