Re: [qooxdoo-devel] forceValue in 0.7.x

2007-09-20 Thread Deacon Frost
Wow -- thanks a lot for all your input! I think I'll explore the Property system a bit more (this is really nice stuff!) and also check out the ComboboxEx-code. Thanks again. -- View this message in context: http://www.nabble.com/forceValue-in-0.7.x-tf4483894.html#a12800280 Sent from the qooxd

Re: [qooxdoo-devel] forceValue in 0.7.x

2007-09-20 Thread dperez
Look at the ComboBoxEx source code as an example. Some circular references may exist to keep synchronized the value in the text field, and the list. Some temporary flags like this._fromSelected, this._fromValue are kept to avoid circular events. Deacon Frost wrote: > > Hello, > > I am looking

Re: [qooxdoo-devel] forceValue in 0.7.x

2007-09-19 Thread Sebastian Werner
If you use properties this issue is normally already solved. Properties only fire events or execute apply methods if the value has changed. In such circular calls normally the value keeps the same and the circularity is broken by the property system. "forceValue" and all other forces were a

Re: [qooxdoo-devel] forceValue in 0.7.x

2007-09-19 Thread Raul Gutierrez S.
On Wed, 2007-09-19 at 14:55 -0700, Deacon Frost wrote: > Hello, > > I am looking for a way to update a textfield or select a combobox item > without having a change-event fired to prevent circular events (combobox > sets textfield value and vice versa). I came across the "forceValue" method > whic

[qooxdoo-devel] forceValue in 0.7.x

2007-09-19 Thread Deacon Frost
Hello, I am looking for a way to update a textfield or select a combobox item without having a change-event fired to prevent circular events (combobox sets textfield value and vice versa). I came across the "forceValue" method which is unfortunately no longer available in 0.7.x. Is there a differ