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
neeraj1neeraj1 

Need Code to create Help Text bubble in Visual force page.

I need to create a bubble help text  for fields in a visual force page. 

 

can any one please tell me how to do that?

Pradeep_NavatarPradeep_Navatar

Below is the sample code to get help bubble text next to field. You have to overwrite the salesforce class "helpIcon" to get help text

 

<apex:panelGrid columns="3">

<apex:inputText value="{!name_hm4}"/>

<apex:inputText value="{!link_hm4}"/>

<img src="/s.gif" alt="Help" class="helpIcon" title="Use the “Value” field to provide the text that will appear as a link in the Header Menu in the specified position."/>

</apex:panelGrid>

neeraj1neeraj1

Hi , 

 

Some other way I found the solution. but now it is in the S-Control .  How to add Bubble help text in the S-Control. for a field.

 

If you have any sample code please let me know.