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
ram1234ram1234 

display of detail page when it is onmouseover

when mouse is over a record the detail page should be displayed beside the record....................

 

 

 

 

kiranmutturukiranmutturu

<apex:page standardController="account" recordsetvar="accounts">
<apex:form >
<apex:pageBlock title="List of Accounts">
<apex:pageblocksection >
<apex:pageblockTable border="1" value="{!accounts}" var="a">
<apex:column >
{!a.name}
<apex:actionSupport event="onmouseover" rerender="op">
<apex:param name="aid" value="{!a.id}" />
</apex:actionSupport>
</apex:column>
</apex:pageblockTable>
</apex:pageblocksection>
</apex:pageBlock>
<apex:outputpanel id="op">
<apex:detail subject="{!$CurrentPage.parameters.aid}"
relatedList="false" />
</apex:outputpanel>
</apex:form>
</apex:page>

ram1234ram1234

thanks for ur reply.............but my requirement  is to get detail page just beside the record.....u can find this in your own login in recent items..........

 

 

 

Regards,

Ram.

kiranmutturukiranmutturu

oh u need the mini page layout on hover of that record..right?