0

how can I disable a commandbutton (ajaxbutton) when the user clicks on it?

i tried it with:

onclick="javascript:this.disabled='true';"

and

onclick="document.getElementById('buttonid').disabled='true'"

but nothing works?

Niko
  • 1,054
  • 5
  • 25
  • 52

1 Answers1

1

For your specific problem I think you just need to remove the quotes around 'true'. But also look at this link How can I disable an h:commandButton without preventing the action and actionListener from being called?

Community
  • 1
  • 1
Boris Remus
  • 191
  • 1
  • 4