Inside a dataTable
<t:inputText value="#{row.value}" required="true" />
JSF does not give user a nice validation message because it uses generated id(s).
So it is better to validate using back bean method like:
<t:inputText value="#{row.value}"
validator="#{row.validateRequired}" />
and print out meaningful messages using row's name.
But the validator method (row.validateRequired) did not get called if its value was null.
Is there a way to get the validator method to be called whatever the value is, even null? Should this be configurable?
Thanks for help!
Yahoo! Mail
Use Photomail to share photos without annoying attachments.

