Posted by : Akshay Patil
Wednesday, 18 March 2015
Method
1:
STEP 1
Create a button of type “Create a button in
a region position”.
STEP 2
Set the button’s target to be a URL.
STEP 3
If you
do not want a confirm dialog with the button, set the button’s URL target to
the following (Note: The
below has been put on 3 lines for ease of viewing but should be entered into
the URL target all as one line of text):
javascript:this.disabled=true;
this.value='Submitted...';
doSubmit('XXXXXX');
If you
DO want a confirm dialog with the button, set the button’s URL target to the
following (Note: The below
has been put on 4 lines for ease of viewing but should be entered into the URL
target all as one line of text):
javascript:if (confirm('Are you sure you
want to?')) {
this.disabled=true; this.value='Submitted...';
doSubmit('XXXXXX');
}
In either case you should change the value
of XXXXXX to be the same as the name of the button. This is the value that
REQUEST will be set to when the button is clicked. By setting it to be the same
as the name of the button it means that you can still use “When Button Pressed”
conditions for this button.
Method
2:
Paste this in the attribute property-
onmouseup="this.disabled=true;doSubmit('XXXX');"
Note:-XXXX
is the name of the button.