posted 17 years ago
Thanks for advice. Your solution resolved parts of my problem.
My problem is, that the action which should reset the bean properties is an action on the bean which I want to reset
<h:commandButton value="#{msg.reset}" action="#{invocation.reset}" immediate="true" />
The action-code
did reset the bean-properties but obviously not the components (values) which were bound to the properties. So I had to reset the components to (otherwise the old values were displayed afer render response).
The code
did it finally. Im not sure if this is the way to do it.
I am also a bit confused about the relationship between bean-property-values and component values and wether a change of the one side affects the other side. Changing the bean property in code does not necessarily also changes the components value seen on the jsp-Page. Any explanation on this topic would be helpfull for me.
Thanks anyway!
[ June 21, 2007: Message edited by: Klaus Classen ]
[ June 21, 2007: Message edited by: Klaus Classen ]