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
Karim BAHAJIKarim BAHAJI 

How to increase the number of characters of the the help text [Custom field]

Hi all,

Do you know how we can increase the number of characters of the the help text on a Custom field?

Thanks in advance.
Best Answer chosen by Karim BAHAJI
Prabhat Kumar12Prabhat Kumar12


If you are using Visualforce page then you can increase in following way.
 
<apex:pageBlockSectionItem helpText="Lorem ipsum ... (400+ chars)">
    <apex:outputLabel value="{!$ObjectType.Opportunity.fields.CurrencyIsoCode.Label}" />
    <apex:outputField value="{!Opportunity.CurrencyIsoCode}" />
</apex:pageBlockSectionItem>

All Answers

Prabhat Kumar12Prabhat Kumar12


If you are using Visualforce page then you can increase in following way.
 
<apex:pageBlockSectionItem helpText="Lorem ipsum ... (400+ chars)">
    <apex:outputLabel value="{!$ObjectType.Opportunity.fields.CurrencyIsoCode.Label}" />
    <apex:outputField value="{!Opportunity.CurrencyIsoCode}" />
</apex:pageBlockSectionItem>
This was selected as the best answer
Karim BAHAJIKarim BAHAJI
Thank you Kumart.
Prabhat Kumar12Prabhat Kumar12
Please select this as answer so that it will to others. :)