We have JSF dropdowns that use a default value of "Select One..", but we do not want our JSF validator to accept this as an accpetable value on save.
so beyond/or in place of Required="true", is there any way to do this?
example values:
"select one.."
"cat"
"dog"
Only "cat" or "dog" should pass validation.
required="true"? That's in fact the only valid solution. If it's actually the default message which is bothering you, then it may be good to know that there are ways to customize this. – BalusC Nov 1 '10 at 18:56