HA
haneefm
Syncfusion Team
December 5, 2007 03:36 PM UTC
Hi Ali,
You can set the Style.CellTipText for the particular column to show the tooltip in a grid. You can do this in QueryCellInfo.
private void grid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
if(e.RowIndex > 0 && e.ColIndex == 3)
{
e.Style.CellTipText = e.Style.FormattedText;
//maybe .Text or some other string...
}
}
Best regards,
Haneef