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
VyadiVyadi 

Need to add a related list on VF Page

Hi All,

              I have a custom object called Tickets on which I have a VF Page. On this page I would like to show the list of records from a custom Object called Document Share which is on the related list of the Case object. Can someone tell me how to go about it. Thanks for your help.

 

Meer SalmanMeer Salman

HI,

 

You can add related list in your page by simply making relatedList="true":

 

<apex:page standardController="Tickets__c">
<apex:detail subject="{!ticket.Id}" relatedList="true" title="false"/>
</apex:page>

 

MIght be the answer to your query.