We can change the display name of the entity fields easily by editing field display name property. But we can’t change fields label used in address composite controls. In this post we are demonstrating how to relabel composite control fields. Requirement: Relabel city field in address composite control in account entity. Note: You can’t change field logical name once it is created. Solution We can implement this requirement using Java Script. We have option to access composite control using JavaScript. It can be refered using the following ways:
<composite control name>_compositionLinkControl_<constituent attribute name>
If we want to refer any field which is used in the composite control, it can be done like the following. Here we are accessing the city field:
<composite control name>_compositionLinkControl_address1_city
To relabel the normal fields, we can use setLabel method, so we can use the same method to relabel city as well. Let’s say we want to rename city field to “Distric”. We can use the following code for that: