AD
Administrator
Syncfusion Team
April 27, 2006 05:50 AM UTC
Hi Ramachandran,
The PushButton text/caption must be set in the QueryCell event handler. Below is a code snippet.
private void Model_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
if(e.ColIndex == this.gridDataBoundGrid1.Binder.NameToColIndex("ColumnName") && e.Style.CellType == "PushButton")
e.Style.Description = e.Style.CellValue.ToString();
}
Let us know if you need any further assistance.
Regards,
Calvin.