The Problem
This topic one is very short but I use it for many times in Apex development. This approach cover how to add tool tip for items in Apex from releases 4 and later.The Solution
- Add some control (edit field in this case) P10_NAME
- set HTML Form Element Attributes:
onmouseover="toolTip_enable(event,this,'Place here tool tip text ...')"
e.g.
P10_NAME: style="color:yellow;background-color:blue;"then define the tooltip by appending the code after existing style entry (as shown below):
style="color:yellow;background-color:blue;" onmouseover="toolTip_enable(event,this,'Place here tool tip text ...')";
Hope this helps someone ...
Cheers!
It helped me thanks Damir Vadas
ReplyDeleteGlad to hear that.
DeleteCheers!
Instead of tool tip text hardcoding can this accept #COLUMN# (database value) in interactive report
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteWhy I got error: Uncaught ReferenceError: toolTip_enable is not defined
Delete