Refer Object Field Label Name in Visualforce
How to Get the Label Names for Refer Object’s Field in Salesforce?
Many case we many need to use object field label name in the Visualforce page. We can use “$ObjectType” system class.
Sample Code :
<apex:outputLabel value="{!$ObjectType.Account.fields.Name.label}" />
0 Comments