I am new to XHTMLs, I require some help regarding validation messages . when I tried to validate the user controls on client side, getting the error message in full form like
createUser:user: Validation Error: Value is required.
createUser:firstName: Validation Error: Value is required.
The validation part I am using
<h:inputText id="user" value="#{createUser.userName}" required="true">
<f:validateLength minimum="1" maximum="15"></f:validateLength></h:inputText>
<h:message for="user" style="color:red" />
Is it possible to display the error message part alone (Value is required) using client side validations alone?