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
Balaji B 10Balaji B 10 

how to code in visualforce in page block table,when cursor on record name,in popup show all details of particular record?

pconpcon
You can do something like
<a href="/{!Lookup__c}" id="lookup_{!Lookup__c}"
    onblur="LookupHoverDetail.getHover('lookup_{!Lookup__c}').hide();"
    onmouseout="LookupHoverDetail.getHover('lookup_{!Lookup__c}').hide();"
    onmouseover="LookupHoverDetail.getHover('lookup_{!Lookup__c}', '/{!Lookup__c}/m?retURL=%2F{!Lookup__c}&isAjaxRequest=1').show();">
        <apex:outputText value="{!Lookup__r.Name}" />
</a>
Of course replacing Lookup__c with the field name for your related object.