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
sid_devsid_dev 

Pop-up in Visual Force

Hi,

 

I am trying to create a formula field containing HYPERLINK to show the VisualForce page to display some details of the case object. I want to create a link in such a way that on mouse over I can display the pop-up.

 

One thing to note here is that I need to use the case object as I need to show the details of that case in the popup. This link is to be shown in the list of all cases on he right side.

 

Can any one help me with this?

Cool_DevloperCool_Devloper

Well, you can palce a "onMouseOver" event on the hyperLink and dynamically show a pop-up window using JS!!

The only thing you need to make sure is that you pass the CaseId to the controller method which will fetch you all the case details.

Cool_D