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
Raj88Raj88 

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
Andy BoettcherAndy Boettcher
The "mini page layout" is controlled declaratively.  Look under Setup/Customize/Opportunity/Page Layouts/<edit your layout> and at the top you'll see a link for "mini page layout".
Raj88Raj88
Hi Andy,
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.