I have some columns in a grid with the CellActivation property set to NoEdit. However I would like to override this property for certain rows. For certain rows I want this cell to be editable. row.Cells[column].Activation = Activation.AllowEdit does not work when the column.CellActivation property is NoEdit. Any help would be appreciated. Thanks
You just set CellClickAction.
If you want to read only.
grid.DisplayLayout.Override.CellClickAction = CellClickAction.RowSelect;
else
grid.DisplayLayout.Override.CellClickAction = CellClickAction.Default;