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
BhavanaBhavana 

related list with link to vf page

Hi,

We have a requirement, to add a related list on Account layout,
1. the list should display 4 rows of data, when the 5th entry comes, the 1st entry should disappear. 
2. each entry must be a link to vf page displaying certain fields.

Please help me with the ideas of how this could be implemented.

Thanks.
 
Rahul KumarRahul Kumar (Salesforce Developers) 
Hi Bhavana,

<script>
  function goToContactRelatedList()
  {
      location.href = "#resSection";
      return false;
  }
  </script>
  <apex:outputLink value="Contacts" onclick="return goToContactRelatedList();"> Contacts </apex:outputLink>
Please refer the below link for reference. I hope it will be helpful.

Please mark it as best answer if the information is informative.

Thanks
Rahul Kumar