Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <apex:pageBlockSection title="Event Information">
  2. <apex:inputField value="{!eventRecurrence.name}"/>
  3.  
  4. <apex:outputField value="{!eventRecurrence.Active__c}" />
  5.  
  6. </apex:pageBlockSection>
  7.  
  8. <apex:pageBlockSection title="Recurrence Information" columns="2">
  9.  
  10.  
  11. <apex:pageBlockSectionItem dataStyle="width:1%" labelStyle="width:1%" >
  12. <apex:selectRadio layout="pageDirection">
  13. <apex:selectOption itemvalue="1"/>
  14. <apex:selectOption itemvalue="2"/>
  15. </apex:selectRadio>
  16. </apex:pageblocksectionitem>
  17. <apex:pageBlockSectionItem dataStyle="padding:15px">
  18. <inputField value="{!eventRecurrence.name}"/>
  19. On day
  20. <inputField value="{!eventRecurrence.day__c}"/>
  21. of every
  22. <inputField value="{!eventRecurrence.Number_of_Months__c}"/>
  23. month(s)
  24. <br/>
  25.  
  26.  
  27. </apex:pageblocksectionitem>
  28. </apex:pageBlockSection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement