BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
grid.IgnoreReadOnly = true;
grid[4,3].ReadOnly = false;
grid.IgnoreReadOnly = false;
to turn off the ReadOnly on that particular cell. But I am not sure this will be sufficient depending upon how you have set up the embedded GridDataBoundGrid. You have to make sure that that grid is not readonly for some reason.
> grid.IgnoreReadOnly = true;
> grid[4,3].ReadOnly = false;
> grid.IgnoreReadOnly = false;
>
>
> to turn off the ReadOnly on that particular cell. But I am not sure this will be sufficient depending upon how you have set up the embedded GridDataBoundGrid. You have to make sure that that grid is not readonly for some reason.