Hi,
I do a check on the CellControlAttached event to know if a row is of a certain datatype.
Is it possible to prohibit a row (or cells) from being editable when this check is being true ?
Thanks,
Nicolas
Hi Nicolas,
Using the CellControlAttached event might not be the best way to achieve this. You could use the RowEnteringEditMode / CellEnteringEditMode events, perform these checks there, and set the e.Cancel event argument to "true" to prohibit entering edit mode on that row/cell.
Hope that helps,