AD
Administrator
Syncfusion Team
August 16, 2006 04:31 PM UTC
Hi GA,
I''m not a Syncfusion developer but I recall that in order to change any properties, ReadOnly must be set to false. So you''d have to set it to false, make your changes and set it back to true.
Hope this helps!
AD
Administrator
Syncfusion Team
August 16, 2006 04:50 PM UTC
After setting style.Readonly = true for a cell, if you want to make changes to this cell, then before making the change, you must first set grid.IgnoreReadOnly = true;
grid.IgnoreReadOnly = true; //turn off readonly
grid[row,col].CellValue = ???; //change a readonly style
grid.IgnoreReadOnly = false; //turn readonly back on