hi snufse
ok then ignore edit mode problem.
Regarding is your showToolTip function accepts two arguments first one is the self reference and the second one is the text here you need to refine your javascript code:
function showToolTip(ctrSource,text)
{
ctrSource.style.top = window.event.clientY + 20;
ctrSource.style.left = window.event.clientX;
ctrSource.innerText = text;
ctrSource.style.visibility = "visible";
}
Server side change In RowDataBound Event
change like this
e.Row.Cells(3).Attributes.Add("onmouseover", "showToolTip(this,'" & myControl1.Text + "')")
the codes here i have given are not tested for information purpose only. Do the changes what ever necesary.
Hope it will work. if not please let me know
Pon Saravanan
http://www.vbknowledgebase.com