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

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

share|improve this question
1  
I recommend reading BalusC tutorial – Matt Handy Sep 30 '11 at 9:03
Unfortunately this solution does not suit me, because the use of the <f:attribute> does not solve my problem. I need to get the value of the component directly in the Validator-class using the component id – Michael Sep 30 '11 at 9:11

1 Answer

up vote 4 down vote accepted

Pass the ID of the other component in an <f:attribute>.

<h:form id="formId">
    <h:inputText value="#{bean.start}">
        <f:validator validatorId="rangeValidator" />
        <f:attribute name="endComponentId" value="formId:end" />
    </h:inputText>
    ...
    <h:inputText id="end" value="#{bean.end}" />
    ...
</h:form>

with in validator

String endComponentId = component.getAttributes().get("endComponentId");
UIInput endComponent = (UIInput) context.getViewRoot().findComponent(endComponentId);
Object endComponentValue = endComponent.getSubmittedValue();
// ...

However, easier is to just pass the value of the end component straight into the <f:attribute>.

<h:form id="formId">
    <h:inputText value="#{bean.start}">
        <f:validator validatorId="rangeValidator" />
        <f:attribute name="endComponentValue" value="#{end.submittedValue}" />
    </h:inputText>
    ...
    <h:inputText binding="#{end}" value="#{bean.end}" />
    ...
</h:form>

with in validator

Object endComponentValue = component.getAttributes().get("endComponentValue");
// ...

Note that you need to get the vale by UIInput#getSubmittedValue() instead of UIInput#getValue() because the components are processed, converted and validated in the order as they appear in the tree. Any submitted value of components which aren't converted/validated yet is available by UIInput#getSubmittedValue() and any of those which are already converted/validated is available by UIInput#getValue(). I'd suggest to put your validator on the second one if that is mandatory.

See also:

share|improve this answer
1  
Thank you very much! – Michael Oct 4 '11 at 12:09

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.