hello SadRed,
many thanks for your answer. :-)
immediate="true" doesn't solve my problem. the effect is same as without
immediate="true". my main problem is to write an value back to textfield2.
this shall happen in bean.
i try out with FacesContext.getCurrentInstance(), but i doesn't find
component 'testfield2'. :-(
best regards
Michael
>> hello people,
>>
[quoted text clipped - 38 lines]
>
> Try immediate="true" for the first h:inputText
SadRed - 15 Apr 2007 00:22 GMT
> hello SadRed,
>
[quoted text clipped - 52 lines]
>
> > Try immediate="true" for the first h:inputText
I forgot to mention that value change listener is
called in the Process Validation phase of JSF
life cycle. So, in your JSF view, immediate should
be false for tf1 and tf2 value update should be
done by calling setValue() method of the component.
And the last line of the listener should be:
facesContext.renderResponse() call.