• Apexnovice
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies

Hello,

 

I am currently working on setting up a UI in which the leads tab would be in a Tabbed format and would like to know how I can break out the Lead Detail page to have each section ( Lead detail,Address Information. Additional Information) each be its own tab..  I added a snip of the code to give an idea where i am going wrong.. The tab is the created but includes all section of lead detail

 

<apex:tabPanel switchType="client"
                  selectedTab="tabdetails"
                  id="LeadTabPanel">
      <apex:tab label="Details" name="AccDetails"
                id="tabdetails">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>

 

I want to add the below but doesnt work

 

<apex:tabPanel switchType="client"
                  selectedTab="tabdetails"
                  id="LeadTabPanel">
      <apex:tab label="Details" name="AccDetails"
                id="tabdetails">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>

 

      
      <apex:tab label="Additional Information" name="AdditionalInformation"
                id="tabAdditionalInformation">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>
      

 

Thanks!
               

Hello,

 

I am having an issue an hopefully you all can guide me in the rigth direction. My Company is in need of three new custom object fields (inbound call count, outbound call count, vm count) which would be a roll up summary of that particular activity type. Problem is i cannot seem to use roll up summaries on Activities and have it show up in my custom object ( due to the relationship issues between standard and custom objects)

 

Do you all have any idea on a workaround?

Hello,

 

I am currently working on setting up a UI in which the leads tab would be in a Tabbed format and would like to know how I can break out the Lead Detail page to have each section ( Lead detail,Address Information. Additional Information) each be its own tab..  I added a snip of the code to give an idea where i am going wrong.. The tab is the created but includes all section of lead detail

 

<apex:tabPanel switchType="client"
                  selectedTab="tabdetails"
                  id="LeadTabPanel">
      <apex:tab label="Details" name="AccDetails"
                id="tabdetails">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>

 

I want to add the below but doesnt work

 

<apex:tabPanel switchType="client"
                  selectedTab="tabdetails"
                  id="LeadTabPanel">
      <apex:tab label="Details" name="AccDetails"
                id="tabdetails">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>

 

      
      <apex:tab label="Additional Information" name="AdditionalInformation"
                id="tabAdditionalInformation">
         <apex:detail relatedList="false" title="true"/>
      </apex:tab>
      

 

Thanks!
               

Hello,

 

I am having an issue an hopefully you all can guide me in the rigth direction. My Company is in need of three new custom object fields (inbound call count, outbound call count, vm count) which would be a roll up summary of that particular activity type. Problem is i cannot seem to use roll up summaries on Activities and have it show up in my custom object ( due to the relationship issues between standard and custom objects)

 

Do you all have any idea on a workaround?