Search code examples
salesforceapex-codevisualforce

Can we have links of related lists in a VF page


I have a VF page in which i have related lists displayed using

  <apex:relatedList list="NOTESANDATTACHMENTS"/>

Is there a way i can have the link of the related list on the top of the page like the ones in standard page? The reason for this is that my VF page is pretty long and the user needs to scroll to get the view the notes and attachment list.

is there any way we can achieve this?

Thanks


Solution

  • Not directly, but you can always use anchor links.

    <a href="#mylist">Go to related list</a>
    ...
    
    <a id="mylist" />
    <apex:relatedList list="NOTESANDATTACHMENTS"/>