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
betterbhushanbetterbhushan 

Editing Related list label

How to edit only related list label without modfigying label of object.

Navatar_DbSupNavatar_DbSup

Hi,

 

Create a Visual force page with related list

 

 

Use the below code snippet as reference

<apex:page standardController="Account"  >

  <apex:relatedList title="test" list="contacts" />

</apex:page>

 

Add the Vf page in page layout. 

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

matermortsmatermorts

If you're lookup is a custom field, i.e. if you have an object called "Task" looking up to "Milestone", you can edit the related list label by going into edit mode on the lookup field.