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
Varun99Varun99 

Custom related list in sales force

Hi,

 

How display custom related list gor opportunity records in visual force page like same as standard related list and also

pagination for records, clicking on edit/del links it will open a pop up and modify records or delete records

when clicking on new it will open new pop up

 

 

 

Thank you

 

 

WaveOCWaveOC
Try using - you can find description within the "Component reference" when you'll edit or create VF page
Raj.ax1558Raj.ax1558

Use the <Apex:detail/> in a visualforce page.

 

Pass the record Id in url like -

/apex/VFPagename?id=fddf8sdf79s7d9

 

then in visualforce page -

<apex:page>

  <apex:form>

    <apex:detail/>

  </apex:form>

</apex:page>

 

Thank You

 

Please marked as solution for other persons benefits.

 

 

 

Naidu PothiniNaidu Pothini

you can use <apex:relatedList list="relationship_name"/>

 

<apex:relatedList list="NotesAndAttachments"/>
<apex:relatedList list="ActivityHistories"/>