hi,
I'm using v10.3, is that any function on showing a tooltip on a cell when mouse over?
Thanks in advance
Hello,
Yes, the tooltips are available in 10.3. You can set a tooltip of a particular cell, for example, in InitializeRow event:
protected void WebDataGrid1_InitializeRow(object sender, RowEventArgs e)
{
e.Row.Items[0].Tooltip = "some tooltip";
}
Hope this helps.
Regards,
Lyuba
Developer Support Engineer
Infragistics
www.infragistics.com/support
I am using 10.2 and it doesn't appear that Tooltip is available on the "e.Row.Items[0]" in the InitializeRow event handler on a WebDataGrid.
I see that a support ticket was created. Is there a fix for this? Please don't say "upgrade to 10.3". That's much easier said than done.
Thanks
Hi,
This features only available on v10.3
Works in Version=11.1.20111.1006 for me