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
PXForcePXForce 

Customized tool tip / popups

Is there a way that I can have Customized tool tip in a visualforce page.

I have a pageBlock table and I want to display info in a tooltip based on the Id on each row of the table. 

e.g i have a table displaying a list contacts. now when I mouse over each contact I want to show some account info in a tool tip / hover on that table. 

Is there a way to accomplish that in visualforce.

 

Also Is there a way we can have floating pop ups. I can have a pop up as in this example

http://community.salesforce.com/t5/Visualforce-Development/Best-way-to-show-Pop-up-in-a-visual-force-page/m-p/145439?jump=true#M16568 

 

But its position is absolute , i want the pop up to float as I scroll up and down the page.

SSRS2SSRS2

You can use apex column in your pageBlock table.column has attribute called title for display a tool tip dynamically.


 

<apex:column value="{!xxx.Id}" title="{!xxx.Name}"/>

 

-Suresh