Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. <apex:page standardController="Lead" showHeader="true" wizard="false" readOnly="false" rendered="true" showChat="true" standardStylesheets="true"
  2. tabStyle="Lead" >
  3. <style>
  4. .activeTab {background-color: #236FBD; color:white; width: 170px; height: 20px; padding-top: 6px; font-size: 12px; font-style: bold; border-top: none;
  5. background-image:none;}
  6. .inactiveTab { background-color: lightgrey; color:black; width: 170px; height: 20px; padding-top: 6px; font-size: 12px; font-style: bold; border: none;
  7. background-image: none}
  8. </style>
  9.  
  10. <apex:pageBlock id="block1">
  11. <apex:pageBlockSection id="section2" columns="2" collapsible="true" title="Important Information!" >
  12.  
  13.  
  14.  
  15.  
  16. </apex:pageBlockSection>
  17. <script>
  18. twistSection(document.getElementById('{!$Component.block1.section1}').getElementsByTagName('img')[0])
  19. </script>
  20.  
  21. </apex:pageBlock>
  22. <apex:tabPanel switchType="client" selectedTab="tabdetails"
  23. id="LeadTabPanel" tabClass="activeTab"
  24. inactiveTabClass="inactiveTab" >
  25. <apex:tab label="Details" name="LeadDetails" id="tabdetails" style="background-color: white;">
  26. <apex:detail relatedList="false" title="true" inlineEdit="true"/>
  27. </apex:tab>
  28. <apex:tab label="CampaignHistory" name="childCampaigns" id="tabContact" >
  29. <apex:relatedList subject="{!Lead}" list="Campaign History" />
  30. </apex:tab>
  31. <apex:tab label="Opportunities" name="Opportunities"
  32. id="tabOpp">
  33. <apex:relatedList subject="{!Lead}"
  34. list="Opportunities" />
  35. </apex:tab>
  36. <apex:tab label="Open Activities" name="OpenActivities"
  37. id="tabOpenAct">
  38. <apex:relatedList subject="{!Lead}"
  39. list="OpenActivities" />
  40. </apex:tab>
  41. <apex:tab label="Activity History" name="ActivityHistory" id="tabActHist">
  42. <apex:relatedList subject="{!Lead}" list="ActivityHistories" />
  43. </apex:tab>
  44. <apex:tab label="Notes & Attachments"
  45. name="NotesAndAttachments" id="tabNoteAtt" >
  46. <apex:relatedList subject="{!Lead}"
  47. list="CombinedAttachments" />
  48. </apex:tab>
  49. </apex:tabPanel>
  50.  
  51. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement