function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AnumcaAnumca 

How to display the Particular Related list under the Related list of the object In Tabbed View

Hi All

      

      I need to display the Perticular Related list under the Related list in Tabbed view of the Object.

 

For Example.

 

  I have 2 custom objects   Units & Issues

 

I need to display the   Units 

                                             |

                                         Issues   ---->( I have completed up to this)

                                              |

                                  Activity History

 

I need to display the ActivityHistory of Issues object in Units object VF page.

 

My Page is

 

<apex:page standardController="Units__c" showHeader="true" tabStyle="Units__c"> 

<style>

.activeTab {background-color: #236FBD; color:black;background-image:white}.inactiveTab { background-color: white; color:black;background-image:none}<

/style>

<apex:tabPanel switchType="client" selectedTab="tabdetails" id="UnitTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab">

<apex:tab label="Details" name="AccDetails" id="tabdetails">

<apex:outputPanel style="background-Color:white">

<apex:detail relatedList="false" title="true"/>

</apex:outputPanel>

</apex:tab>

<apex:tab label="Issues" name="Issues" id="tabIssues">

<apex:outputPanel style="background-Color:white">

<apex:relatedList subject="{!Units__c}" list="Issue__r" />

</apex:outputPanel>

</apex:tab>

</apex:tabPanel>

</apex:page>

 

Please help me Urgent

 

Thanks & Regards

Anu...

goabhigogoabhigo

Not sure.. <apex:relatedList list="{!Issues__r.ActivityHistory}" /> will this work?