Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <apex:page standardController="CustomObject__c" extensions="CustomObjectCtrlExt" >
  2.  
  3. <apex:form>
  4.  
  5. <apex:pageBlock>
  6.  
  7. <apex:pageBlockButtons >
  8. <apex:commandButton value="Save" action="{!save}"/>
  9. <apex:commandButton value="Cancel" action="{!cancel}"/>
  10. </apex:pageBlockButtons>
  11.  
  12. <!-- Record Type 1 -->
  13. <apex:pageBlockSection rendered="{!recordtypename == 'RecordTypeName1'}" >
  14. ...
  15. </apex:pageBlockSection>
  16.  
  17.  
  18. <!-- Record Type 2 -->
  19. <apex:pageBlockSection rendered="{!recordtypename == 'RecordTypeName2'}" >
  20. ...
  21. </apex:pageBlockSection>
  22.  
  23.  
  24. <!-- Record Type 3 -->
  25. <apex:pageBlockSection rendered="{!recordtypename == 'RecordTypeName3}" >
  26. ...
  27. </apex:pageBlockSection>
  28.  
  29.  
  30.  
  31. ...
  32.  
  33.  
  34.  
  35. </apex:form>
  36.  
  37. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement