As we have comparevalidator in Asp.Net, what do we have in JSF to validate whether two field's value are same or not? I want to validate password and confirmPassword field.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, such a validator does not exist in the basic JSF implementation. You basically need to run the validator on the last component of the group and grab the other component you'd like to validate as well using
Also see this article for more background info and concrete examples. On the other hand, if you're already on JSF2, then you can also make use of ajaxical validation:
..where
Also see this article for more JSF2 validation examples. |
|||
|
|