You need to sign in to do that
Don't have an account?

Help with hover on an image on visualforce page
I need help with hovering over an image which shows the list of values from the <apex:repeat> tag: I want the values from the code in the bold below to be shown when i hover over an image something like help bubble(?).
Here is my code
<apex:repeat value="{!dpgEnrollmentGuidelines}" var="dpGuideline" >
<tr>
<td class= "changecolor">
<apex:outputText value="{!dpGuideline.Required_for__c}"/>
</td>
<td onclick="navigateToElement('{!dpGuideline.Id}');">
<apex:outputText value="{!dpGuideline.Display_Name__c}"/>
<apex:repeat value="{!dpGuideline.Acceptable_Documents__r}" var="accdoc" >
<apex:outputText value = "{!accdoc.Acceptable_doc__Name__c}"
</apex:repeat>
</td>
</apex:repeat>
Thanks
Here is my code
<apex:repeat value="{!dpgEnrollmentGuidelines}" var="dpGuideline" >
<tr>
<td class= "changecolor">
<apex:outputText value="{!dpGuideline.Required_for__c}"/>
</td>
<td onclick="navigateToElement('{!dpGuideline.Id}');">
<apex:outputText value="{!dpGuideline.Display_Name__c}"/>
<apex:repeat value="{!dpGuideline.Acceptable_Documents__r}" var="accdoc" >
<apex:outputText value = "{!accdoc.Acceptable_doc__Name__c}"
</apex:repeat>
</td>
</apex:repeat>
Thanks
You could use the Attribute Title for showing tooltip.
title : The text to display as a tooltip when the user's mouse pointer hovers over this component.
Like
Thanks
Shashikant
Refere to the following links:
http://cyukt.com/learn/show-help-text-icon-visualforce-page-salesforce/
https://blog.internetcreations.com/2012/05/using-hover-help-text-in-visualforce/#.Vv74-_krKM8
http://www.davehelgerson.com/?p=405
Let me know if it helped you!
Thanks,
AG