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

How can I display validation error messages in JSF and Richfaces in the form of an icon beside the field and a tooltip with the error message appears when the mouse hover on the error icon ?

share|improve this question

1 Answer

up vote 3 down vote accepted

Here is what you can do:

  • Use <h:message tooltip="true" showSummary="true" showDetail="true" for=... />: this way the detail will appear as tooltip, hide the summary, replace it with an icon (see how).
  • Create a <rich:panel id="myid" rendered="#{bean.errorDisplayed}"><h:graphicImage src"patho/to/image.png" /></rich:panel>, create the tooltip <rich:toolTip for="myid"><h:message for="inputid" /></rich:toolTip>, in the backingbean use FacesContext.getMessages(String clientId) to check form messages. To get the clientId of the input use UIComponentBase.getClientId
  • Simply use h:message, and do some js tricks to wrap the displayed message in a tooltip, and display an icon (all of the js libraries have tooltip plugins).
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.