Hi!
The only thing I want to do is:

Set some values from the backing bean into some inputtext tags (and this is 
done in the valuechangelistener method)
I guess you might experience other problems too.
The valueChangeListener is executed before the model update, so if you change a value in your model you will loose it afterwards.

There are (at least) two workarounds:

*) use the valueChangeNotifier which will be execute AFTER the model update and thus allows a more natural solution
http://issues.apache.org/jira/browse/MYFACES-864

*) set the value of your inputText through the component binding
--
Mario

Reply via email to