3

It is easy enough to disable the command button when it is clicked. But say form validation fails (using ajax and without). How can I re-enable the command button if validation fails to allow the user to fix the error and retry?

2 Answers 2

8

I extended @Daniel's answer to that which worked for me using P:commandButton

onclick="this.disabled=true"
oncomplete="this.disabled=
                #{!facesContext.validationFailed}"
                update="@this"
Sign up to request clarification or add additional context in comments.

Comments

5

Something like this ?

<h:commandButton disabled="#{myBean.someCondition and not facesContext.validationFailed}"/>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.