Re: [qooxdoo-devel] Apply method for a property

2007-05-08 Thread dperez
Thanks Derrell, :-) It would be nice if documented here: http://qooxdoo.org/documentation/developer_manual/properties Derrell.Lipman wrote: > > dperez <[EMAIL PROTECTED]> writes: > >> What's the best practice in 0.7 for changing the value of a property in >> its >> apply method. >> >> qx.Cla

Re: [qooxdoo-devel] Apply method for a property

2007-05-08 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > What's the best practice in 0.7 for changing the value of a property in its > apply method. > > qx.Class.define('myClass', { > properties: { > value: { > apply: '_applyValue' > } > }, > methods: { >_applyValue: function(propValue

[qooxdoo-devel] Apply method for a property

2007-05-08 Thread dperez
Dear community, What's the best practice in 0.7 for changing the value of a property in its apply method. qx.Class.define('myClass', { properties: { value: { apply: '_applyValue' } }, methods: { _applyValue: function(propValue) { //Here a need to cha