prevent双带A4J提交:的commandButton双带、prevent、commandButton、A4J

由网友(面朝阳光)分享简介:我们必须有一个提交按钮(INPUT TYPE =提交)和一堆A4J形式:CommandButton控件这是阿贾克斯的按钮,并转化为输入型=按钮。 We have a form which has a submit button (input type="submit") and a bunch of a4j:comm...

我们必须有一个提交按钮(INPUT TYPE =提交)和一堆A4J形式:CommandButton控件这是阿贾克斯的按钮,并转化为输入型=按钮。

We have a form which has a submit button (input type="submit") and a bunch of a4j:commandButtons which are ajax buttons that translate into input type="button".

我能够使用这个jQuery code的提交按钮的prevent双提交:

I'm able to use this jquery code to prevent double submitting of the submit button:

         $('#createPostingForm').submit(function(){
          $(':submit').click(function() {  
                 return false;  
          });
        }); 

但我怎么也禁用A4J:从多次提交更多的CommandButton控件

But how can I also disable the a4j:commandButtons from being submitted more than once?

感谢。

推荐答案

最终将这些属性的A4J:的commandButton:

Ended up adding these attributes to the a4j:commandButton:

onclick="this.disabled=true" oncomplete="this.disabled=false"
阅读全文

相关推荐

最新文章