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
sreenathsreenath 

need help image after input text field

Hi All,

 

           I need salesforce help ballon image after inputtext field in visualforce page.

 

 

Thanks

Sreenath

Best Answer chosen by Admin (Salesforce Developers) 
hchhch

Use the following command after the <apex:inputField> tag. It will display the help text with content as "Test Help Text".

<img src="/s.gif" id="HelpImage"  alt="Test Help Text" class="helpOrb" title="Test Help Text" />

All Answers

goabhigogoabhigo

Why don't you use <apex:inputField> ? If you use automatically help text ballon, a read strip (if mandatory) will be displayed in VF page.

 

Or in inputText you can use title. Not a ballon but serves the purpose.

hchhch

Use the following command after the <apex:inputField> tag. It will display the help text with content as "Test Help Text".

<img src="/s.gif" id="HelpImage"  alt="Test Help Text" class="helpOrb" title="Test Help Text" />

This was selected as the best answer