There is wide known scenario when click to APEX command button on custom VF page would take quite long time to perform calculation on server side and return the result back to UI. User may try to click the button again which will result in unexpected and undesired consequences. Especially if click to the button invokes DML operations.
There are a few workarounds to avoid such scenarios. In this post you will the most popular workarounds with analysis about their PROS and CONS.
Notes related to all examples below:
- As a $Resource.statusbar you can use any .gif animated "in progress" image
- In all demos we used external controller to build mathematic curves to simulate server activity
#1 Disabling of APEX command button using jQuery. Replacing button with animated GIF
Disabling the button once the user clicks the button could be the straight forward solution. In this solution we will replace the button once the user clicks the button using jQuery
VF page: DisableApexCommandButton to demo disable Button
VF page: DisableApexCommandButton to demo disable Button
<!--
Version : 1.0
Company : WebSolo Inc.
Date : 03.2016
Description : VF page "DisableApexCommandButton" to demo disable Button
History :
-->
<apex:page sidebar="false" showheader="false" cache="false" expires="0" controller="DisableApexCommandButtonContr">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<apex:composition template="{!$Site.Template}">
<apex:define name="body">
<apex:form style="width:550px;" id="f1">
<apex:outputPanel >
<apex:commandButton style="margin-top:20px;margin-left:250px;margin-bottom:25px;height:30px;font-size:12px" styleClass="b1" value="Generate" status="status" action="{!run}" rerender="f1"/>
<div style="display: none; margin-left: 250px;" class="statusbardiv">
<apex:image width="70px" url="{!$Resource.statusbar}" />
</div>
<apex:selectRadio value="{!chart}">
<apex:selectOptions value="{!items}"/>
</apex:selectRadio><p/>
<apex:actionStatus id="status" onstart="$('.statusbardiv').css('display','block');$('.b1').css('display','none');" onstop="$('.statusbardiv').css('display','none');$('.b1').css('display','block');" />
<div>
<apex:chart height="300" width="500" data="{!data}">
<apex:legend position="top"/>
<apex:axis title="Y" type="Numeric" position="left" grid="true" fields="valY"/>
<apex:axis title="X" type="Numeric" position="bottom" fields="valX" />
<apex:lineSeries title="{!chart}" axis="left" xField="valX" yField="valY"/>
</apex:chart>
</div>
</apex:outputPanel>
</apex:form>
</apex:define>
</apex:composition>
</apex:page>
PROS: Easy to implement. Looks good.
CONS: Requires jQuery library.
#2 Call custom div as an overhead "modal window"
Another solution would be not try to "disable" buttons, but to call custom modal window which will prevent user from multiple clicks and multiple form submission.
VF page: DisableApexCommandButton
VF page: DisableApexCommandButton
<!--
Version : 1.0
Company : Websolo inc.
Date : 03/2015
Description : Call custom div as an overhead "modal window"
Update History :
-->
<apex:page sidebar="false" showheader="false" cache="false" expires="0" controller="DisableApexCommandButtonContr">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<style>
.disabledbutton {
pointer-events: none;
opacity: 0.4;
background-color:#E1E1E1;
}
</style>
<apex:composition template="{!$Site.Template}">
<apex:define name="body">
<apex:form style="width:550px;" id="f1">
<apex:actionStatus id="status" onstart="$('#mydiv').addClass('disabledbutton');$('.statusbardiv').css('display','block');" onstop="$('#mydiv').removeclass('disabledbutton');$('.statusbardiv').css('display','none');" />
<div style="display: none; position: fixed; z-index: 999; margin-left: 250px; margin-top: 200px" class="statusbardiv">
<apex:image width="70px" url="{!$Resource.statusbar2}" />
</div>
<div id="mydiv">
<apex:outputPanel >
<apex:commandButton style="margin-top:20px;margin-left:250px;margin-bottom:25px;height:30px;font-size:12px" styleClass="b1" value="Generate" status="status" action="{!run}" rerender="f1"/>
<apex:selectRadio value="{!chart}">
<apex:selectOptions value="{!items}"/>
</apex:selectRadio><p/>
<div>
<apex:chart height="300" width="500" data="{!data}">
<apex:legend position="top"/>
<apex:axis title="Y" type="Numeric" position="left" grid="true" fields="valY"/>
<apex:axis title="X" type="Numeric" position="bottom" fields="valX" />
<apex:lineSeries title="{!chart}" axis="left" xField="valX" yField="valY"/>
</apex:chart>
</div>
</apex:outputPanel>
</div>
</apex:form>
</apex:define>
</apex:composition>
</apex:page>
PROS: Works better in some cases
CONS: Not visually perfect for some users who not used to such approach. Also requires jQuery library.
#3 Disabling of APEX command button using apex:facet method
In this solution we will replace the button with "Processing..." text once the user clicks the button
VF page: DisableApexCommandButton
VF page: DisableApexCommandButton
<!--
Version : 1.0
Company : Websolo inc.
Date : 03/2015
Description : Disabling of APEX command button using apex:facet method
Update History :
-->
<apex:page sidebar="false" showheader="false" cache="false" expires="0" controller="DisableApexCommandButtonContr">
<apex:composition template="{!$Site.Template}">
<apex:define name="body">
<apex:form style="width:550px;" id="f1">
<apex:outputPanel >
<apex:actionStatus id="status">
<apex:facet name="stop">
<apex:commandButton style="margin-top:20px;margin-left:250px;margin-bottom:25px;height:30px;font-size:12px;width:90px" action="{!run}" status="status" value="Generate" disabled="false" rerender="f1"/>
</apex:facet>
<apex:facet name="start">
<apex:commandButton style="margin-top:20px;margin-left:250px;margin-bottom:25px;height:30px;font-size:12px;width:90px" action="{!run}" status="status" value="Processing..." disabled="true"/>
</apex:facet>
</apex:actionStatus>
<apex:selectRadio value="{!chart}">
<apex:selectOptions value="{!items}"/>
</apex:selectRadio><p/>
<div>
<apex:chart height="300" width="500" data="{!data}">
<apex:legend position="top"/>
<apex:axis title="Y" type="Numeric" position="left" grid="true" fields="valY"/>
<apex:axis title="X" type="Numeric" position="bottom" fields="valX" />
<apex:lineSeries title="{!chart}" axis="left" xField="valX" yField="valY"/>
</apex:chart>
</div>
</apex:outputPanel>
</apex:form>
</apex:define>
</apex:composition>
</apex:page>
PROS: Efficient and user friendly
CONS: None