From: <[EMAIL PROTECTED]>
So my jsp has this:
<h:inputText id="userName" required="true"
value="#{registration.userName}" />
..
<h:inputSecret id="password" required="true"
binding="#{registration.password}" />
My backingbean RegistrationBean has the following:
private HtmlInputText userName = null;
private HtmlInputSecret password = null;
with appropriate getters and setters.
What happens if you use 'binding' instead of 'value' for the userName?
<h:inputText id="userName" required="true"
binding="#{registration.userName}" />
--
Wendy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]