Gridview tooltip
Posted
by Geetha
on Stack Overflow
See other posts from Stack Overflow
or by Geetha
Published on 2009-08-03T07:29:32Z
Indexed on
2010/06/10
14:12 UTC
Read the original article
Hit count: 266
Hi All,
if (e.Row.RowType == DataControlRowType.Header)
{
int i = 0;
foreach (TableCell cell in e.Row.Cells)
{
cell.Attributes.Add("title", reason[i]);
i++;
}
}
i am using this code to show tool tip in grid view.Tool tip is getting displayed when the page loads but after a click event the tool tip is not working.
© Stack Overflow or respective owner