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

I have such code:

<h:inputText id="input" value="#{bean.input}">
                           <f:convertNumber />
                           <rich:ajaxValidator event="onblur" />
</h:inputText>

I want that if validation was successful data from "input" was stored in my backing bean. And all this must be on "onblur" event.

And I'm using Hibernate Validator in my backing bean:

@Min(value = 1)
@NotNull(message="{number.not_null}")
public long getInput() {
    return input;
}
share|improve this question

1 Answer

up vote 0 down vote accepted

You're using the wrong approach then.

From the Richfaces docs : AjaxValidator "Skips all JSF processing except validation."

You should use <a4j:support> instead

eg.

<h:inputText id="input" value="#{bean.input}">
  <f:convertNumber />
  <a4j:support event="onblur" ajaxSingle="true" />
</h:inputText>

The validation will still fire but if it is successful then your Bean's values will be updated.

share|improve this answer
Strange but if I use you approach, validation didn't work. – masterzim Jun 23 '09 at 10:21
Did you enter a value? I you have no value set the @NotNull will only be applied if you have required="true" on your UI Component (the inputText). – Damo Jun 24 '09 at 8:39

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.