Wendy Smoak <[EMAIL PROTECTED]> wrote on 10/13/2005 05:57:58 PM:
> 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}" />
omg, do I feel stupid. That's certainly the problem. Sorry for wasting
your time.. and thank you!
>
> --
> Wendy
>
Geeta