Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HI,

I have the following code in my JSP file:

<h:inputText id="name" value="#{jsfBean.name }" required="true"/>
<h:message for="name"/>

The error messages displayed is something like this:

j_id_jsp_1916142437_1:name: Validation Error: Value is required.

How can I format the output error message like giving the color,font,etc.

share|improve this question

2 Answers

up vote 4 down vote accepted

Simply By applying CSS.

<h:message for="age" style="errorMessage" /></p>

You can also override default messages by providing Messages.properties file

javax.faces.component.UIInput.REQUIRED=Please enter a value for this field.
    javax.faces.converter.DateTimeConverter.DATE=Please enter a valid date. 
javax.faces.converter.DateTimeConverter.DATE_detail=Please enter a valid date. Example: {1}

Also See

share|improve this answer
style="errorMessage" should be defined in the CSS file right? – Krishna Jan 22 '11 at 7:31
1  
yes. you need to provide that class – Jigar Joshi Jan 22 '11 at 7:33
What is the correct place to put the messages.properties file? – Krishna Jan 22 '11 at 7:34
I have given like <h:message for="name" style="color:red;"/>. Its working fine. Now I want to format the message in the properties file. – Krishna Jan 22 '11 at 7:35
you need to make Properties file's entry in faces-config.xml please check article it describes it very well – Jigar Joshi Jan 22 '11 at 7:41
show 3 more comments

You simply use style attribute in h:message component for user defined css styles

<h:inputText id="textNameId" label="Name" required="true" ></h:inputText>
<h:message for="textNameId" style="font-size: 11px; color: Green; font-family: verdana, arial, helvetica, sans-serif;"></h:message>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.