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!