Hi,
I am using
jsf validation and the issue is, when i used required attribute for the jsf component the default message(Validation Error: Value is required)is getting displayed, instead of this message i need to display my own custom message, to overcome this I have taken one propertie file and
added the below line, and added the property file in faces config file,
javax.faces.component.UIInput.REQUIRED = Entry is required.
<application>
<message-bundle>com.mir.registration.i18n.MyErrors</message-bundle>
</application>
and this is working fine,
But here the problem is, i need to display the message,
forexmp: For user text box --->Message is ---> User Entry is required
For Password Password Entry is required
For designation Designation Entry is reuired
in the same way for the other fields,
Is there any solution for this issue.
Thanks,
Subrahmanyam.