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
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
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
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
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