I am using this code in the ItemDataBound function of my radGrid in order to set the tooltip to the text of the cell:
I am formatting the column to hide all decimals for space reasons, but I am also using filtering. It is possible that one filters for say where column xyz >= 50 and a row showing 50 will not show up because the value is really 49.6.
I would like the tooltip to shop 49.6, not 50.
Is this possible?
Thank you for any expert advice.
-Megan
if(e.Item is GridDataItem)
{
foreach(TableCell cell in e.Item.Cells)
{
cell.ToolTip = cell.Text;
}
}
I am formatting the column to hide all decimals for space reasons, but I am also using filtering. It is possible that one filters for say where column xyz >= 50 and a row showing 50 will not show up because the value is really 49.6.
I would like the tooltip to shop 49.6, not 50.
Is this possible?
Thank you for any expert advice.
-Megan