Or you can use this javascript hack:

  | <script>
  | function disableButtons(formular)
  | {
  | 
  |    for (var iter = 0; iter < formular.elements.length; iter++) {
  | 
  |      if (formular.elements[iter].type == "submit" 
  |             || formular.elements[iter].type == "button" 
  |             || formular.elements[iter].type == "reset") 
  |      {
  | 
  |        formular.elements[iter].disabled = true;
  | 
  |       }
  |     }
  |   }
  | <script>
  | <h:form onsubmit="disableButtonsAfterSubmit(this);">...</h:form>
  | 

Regards

Felix


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068323#4068323

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068323
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to