AD
Administrator
Syncfusion Team
May 10, 2005 03:24 PM UTC
If you are using a GridControl and do not want the user to be able to click the cell at all, then you can set style.Enabled = false for the individual cells.
If you want the cells to be clickable, just not see the edit cursor, you can handle the grid.CurrentCellStartEditing event, and if grid.CurrentCell.RowIndex/ColIndex point to a cell you do not want to edit, set e.Cancel = true. This should work for either a GridControl or a GridDataboundGrid.