If you want the properties set as a result of performing an action,
you can use t:updateActionListener. With JSF 1.2, the equivalent tag
is h:setPropertyActionListener.
On 9/21/06, Döring Markus <[EMAIL PROTECTED]> wrote:
Hello,
I want to set a property of a managed bean out of a JSP Page.
What I've done so far is the following:
<jsp:useBean scope="request" class="DataControler" id="dataControler">
<jsp:setProperty name="dataControler" property="dataName"
value="User" />
<jsp:setProperty name="dataControler" property="editable"
value="true" />
<jsp:setProperty name="dataControler" property="removeable"
value="true" />
</jsp:useBean>
This works fine in the RenderResponse phase (6). When an action occurs, the
view is restored and in the ApplyRequestValues phase (2) the jsp-setProperties
are not executed.
How can I manage to set an beanProperty with an JSF Tag, or who can I force JSF
to execute the jsp-setProperty in other phases than the RenderResponse?
Thanks for any help
Greetings
Markus Döring