Advertisement
Guest User

Untitled

a guest
Feb 5th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Made By Vir
  2. Ctrl-Esp
  3. H-Spam
  4.  
  5.  
  6. [Load Here]
  7. Ctrl-A
  8. Fe Check-false
  9. Apex-
  10. Server Code-31ed331s
  11. PlayerC-Server
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. <apex:page controller="testctrl" docType="html-5.0">
  19. <apex:form >
  20.   <apex:pageBlock id="myPgBlk">
  21.       <apex:pageBlockSection title="My Pageblocksection" columns="1">
  22.           <apex:inputCheckbox label="Choose a custom date" value="{!chk}">
  23.               <apex:actionSupport event="onchange" rerender="myPgBlk" action="{!NULL}"/>
  24.           </apex:inputCheckbox>
  25.           <apex:input label="Cust Date" value="{!custDate}" type="date" rendered="{!chk == true}"/>
  26.       </apex:pageblockSection>
  27.   </apex:pageBlock>
  28. </apex:form>
  29. </apex:page>
  30.  
  31.  
  32. public class testctrl {Load}
  33.     public Boolean chk {get; set;}
  34.     public Date custDate {get; set;}
  35.     public testctrl() {
  36.         chk = false;
  37.         custDate = Date.today();
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement