Hi Anthony!
> I encounter a problem with JSF value change listener
>   
The valueChangeListener stuff happens BEFORE the update model phase.
So you cant read the updated value from the model, nor you can change it
(or any other model value) simply by setting it.

Now you have two options:
*) set the value through a binding of your component
*) or - even bettery - use the valueChangeNotifier you can find in
tomahawk-sandbox.

The valueChangeNotifier will delay the delivery of the valueChange event
to the "after-model-update" phase and so you can work with your model as
you might expect it :-)

Ciao,
Mario

Reply via email to