Hi Alex!
> I have a Drop down list and a valueChangeListener on the drop down
> list which calls setTestDate :-
>
> public void dropDownChanged(ValueChangeEvent event)
> {
>         setTestDate();
A normal ValueChangeEvent will be sent BEFORE the model update. So your
changed date will be reset to the current displayed value.

Use the our sandbox component s:valueChangeNotifier instead. This
component uses the same method signature, but will fire after the model
update so you can do with your beans whatever your would like to and
have the changes reflected in the UI.

Ciao,
Mario

Reply via email to