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
Jeyachandran VijayJeyachandran Vijay 

how to render articles when we hover on particular field

Pavit SiddhuPavit Siddhu
Hello, Vijay
Use articleId instead of acc.ID.
<a href="/{!acc.Id}" id="{!acc.Id}" onblur="LookupHoverDetail.getHover('{!acc.Id}').hide();" onfocus="LookupHoverDetail.getHover('{!acc.Id}', '/{!acc.Id}/m?retURL=%2F{!acc.Id}&isAjaxRequest=1').show();" onmouseout="LookupHoverDetail.getHover('{!acc.Id}').hide();" onmouseover="LookupHoverDetail.getHover('{!acc.Id}', '/{!acc.Id}/m?retURL=%2F{!acc.Id}&isAjaxRequest=1').show();">{!acc.Name}</a>


I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved.

Thanks and Regards
Pavit Siddhu
Jeyachandran VijayJeyachandran Vijay
Hi Pavit,
Great Thanks,

As per my understanding the above code will work for visualforce page.Actually our requirement is to it in Case layout fields which is the standard one.Kindly help me is there any configuration is available for standard page layout fields in Knowledge articles.

Regards,
Vijay