You need to sign in to do that
Don't have an account?
Vyadi
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.
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.