AD
Administrator
Syncfusion Team
August 4, 2003 03:19 PM UTC
If you have a cell whose style.ReadOnly is true, then you cannot change it unless you tell the grid to ignore the readonly settings:
this.grid.IgnoreReadOnly = true; //turn readonly off
// make your changes to readonly cells...
//...
//...
this.grid.IgnoreReadOnly = false; //turn readonly on