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

Mouse hover mini layout in VF page
I need to show some more fields while mousehover in my VF page. Here is my code
VF:
<td><div class="progress" style="width: {!progress}%;">
<a id="{!opp.Id}" href="{progress}"
onmouseover="LookupHoverDetail.getHover('{!opp.id}', '/{!opp.Id}/m?retURL={!opp.Id}&isAjaxRequest=1').show();"
onmouseout="LookupHoverDetail.getHover('{!opp.Id}').hide();"
onfocus="LookupHoverDetail.getHover('{!opp.Id}', '/{!opp.Id}/m?retURL={!opp.Id}&isAjaxRequest=1').show();"
onblur="LookupHoverDetail.getHover('{!opp.Id}').hide();">{!progress}%
</a>
</div></td>
Currently Opportunity field is only visible when i hover the mouse. I need to show other fields like Stage,Name, etc
VF:
<td><div class="progress" style="width: {!progress}%;">
<a id="{!opp.Id}" href="{progress}"
onmouseover="LookupHoverDetail.getHover('{!opp.id}', '/{!opp.Id}/m?retURL={!opp.Id}&isAjaxRequest=1').show();"
onmouseout="LookupHoverDetail.getHover('{!opp.Id}').hide();"
onfocus="LookupHoverDetail.getHover('{!opp.Id}', '/{!opp.Id}/m?retURL={!opp.Id}&isAjaxRequest=1').show();"
onblur="LookupHoverDetail.getHover('{!opp.Id}').hide();">{!progress}%
</a>
</div></td>
Currently Opportunity field is only visible when i hover the mouse. I need to show other fields like Stage,Name, etc
I have added some more fields in mini page layout from pagelayout section but still i cant able to see those fields in my VF page.