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
ReddyReddy 

how Add Help symbol in My Account Field

User-added image
 How to write VF
Best Answer chosen by Reddy
Sagar LakhaniSagar Lakhani

Please add below code in Vf page to add help text or help bubble in Visualforce page.

<apex:page>
<apex:form >
<apex:pageBlock >
    <apex:pageBlockSection >
        <apex:pageBlockSectionItem helpText="Name of the Account" LabelTitle="Account Name">
            <apex:outputtext >Enter the Account Name</apex:outputtext>
            <apex:inputtext value="{!Account.Name}" />
        </apex:pageBlockSectionItem>       
    </apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

Thanks,

Sagar Lakhani (Skype : Sagar.Lakhani3)

All Answers

ReddyReddy
Thanking you @piyush
 
Sagar LakhaniSagar Lakhani

Please add below code in Vf page to add help text or help bubble in Visualforce page.

<apex:page>
<apex:form >
<apex:pageBlock >
    <apex:pageBlockSection >
        <apex:pageBlockSectionItem helpText="Name of the Account" LabelTitle="Account Name">
            <apex:outputtext >Enter the Account Name</apex:outputtext>
            <apex:inputtext value="{!Account.Name}" />
        </apex:pageBlockSectionItem>       
    </apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

Thanks,

Sagar Lakhani (Skype : Sagar.Lakhani3)

This was selected as the best answer