Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi All,
I need salesforce help ballon image after inputtext field in visualforce page.
Thanks
Sreenath
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" />
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.
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
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.
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" />