I use a custom validator. The difficulty is that I just need to check two fields inputText and compare them. The first field must be greater than the second field. If not, then I have to show a message with the error information. So I need to pass in my custom validator the value of first inputText field. To do this I need to read a value of first InputText field in my validator class. How can I get a id of necessary component in a validator class? Solution using the tag does not suit me. I need to go to the desired component is directly Maybe this can be done through any methods of the FacesContext? Help me please. Any help would be greatly appreciated. Thanks in Advance
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Pass the ID of the other component in an
with in validator
However, easier is to just pass the value of the end component straight into the
with in validator
Note that you need to get the vale by See also: |
|||||
|