I have an a4j:commandLink and I want to disable it when it is clicked. I write the code like this:

    <a4j:commandLink id="link"
       onclick="this.disabled=true;"
       action="#{jobAction.action}"
       <h:graphicImage value="/img/last-enable.gif" />
    </a4j:commandLink>

but it does not work. The same code can work in the a4j:commandButton, why a4j:commandLink can't? Anyone can tell me how to implement that function? Thanks

link|improve this question
feedback

2 Answers

the disabled property applies only on input elements.

Please try return false; instead and add special style so the link will look disabled.

<a4j:commandLink id="link"
   onclick="return false;"
   action="#{jobAction.action}"
   style="text-decoration: none; color: #dedede; cursor: default;"
   <h:graphicImage value="/img/last-enable.gif" />
</a4j:commandLink>
link|improve this answer
feedback

If you initially set onclick="return false;" you cannot run the action at least once. So you have to set it dynamically as below.

<a4j:commandLink onclick="this.setAttribute('onclick', 'return false;');"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.