I'd like to add tooltips to elements inside a table. I tested it using
onMouseOver in a div tag and alert function and it works. Do we have a
proper javascript tooltip function to use?
(I tried adding toolTip and onMouseOver to staticText tag but it didn't
do anything.)
Or is there a better way?
<sun:tableRowGroup id="rowGroup1" data={"$attribute{sessionStats}"}
sourceVar="td">
<sun:tableColumn id="col1">
"<div onMouseOver="javascript:alert('#{td.value.ToolTip}');">
<staticText id="name" value="#{td.value.Name}" />
"</div>
</sun:tableColumn>
Jennifer