HA
haneefm
Syncfusion Team
July 16, 2007 03:53 PM UTC
Hi Simon,
You can use DrawCellDisplayText event and set the e.DispalyText to some new value to want to display. Here is a code snippet
private void gridDrawCellDisplayText(object sender, GridDrawCellDisplayTextEventArgs e)
{
if( e.ColIndex == 3 && e.RowIndex >0)
e.DisplayText = string.Format("{0:P}" , int.Parse(e.Style.CellValue.ToString( ) ) );
}
Best regards,
Haneef