Guest User

Untitled

a guest
Dec 11th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <apex:page id="thepage" standardController="Opportunity" extensions="OpportunityExt">
  2. <apex:form id="theform">
  3.  
  4.  
  5. <script type="text/javascript">
  6. function run(){
  7. document.getElementById("thepage:theform:GoButton").disabled=true;
  8. }
  9. </script>
  10.  
  11. <apex:commandButton action="{!Go}" value="Go"
  12. id="GoButton" onclick="run();"/>
  13.  
  14. </apex:form>
  15.  
  16.  
  17. </apex:page>
Add Comment
Please, Sign In to add comment