AD
Administrator
Syncfusion Team
March 12, 2004 02:16 PM UTC
Try handling the ClearingCells event to see if this does what you need. (In a GridDataBoundGrid, ClearingCells is a member of grid.Model).
private void gridModel_ClearingCells(object sender, GridClearingCellsEventArgs e)
{
e.Handled = true;
e.Result = false;
}
AD
Administrator
Syncfusion Team
March 12, 2004 05:46 PM UTC
Thanks, that does what I wanted. However, I wish that there was some way to add the handler using the Designer.