AD
Administrator
Syncfusion Team
March 7, 2007 09:23 PM UTC
Hi James,
You can use TableControlDrawCellDisplayText event of the grid and set the e.Inner.DispalyText to some new value to want to display. Please find the code snippet below
void gridGroupingControl1_TableControlDrawCellDisplayText(object sender, GridTableControlDrawCellDisplayTextEventArgs e)
{
if (e.Inner.DisplayText.IndexOf("0") != -1)
{
e.Inner.DisplayText = e.Inner.DisplayText.Replace("0","");
}
}
Best regards,
Haneef