AD
Administrator
Syncfusion Team
January 13, 2005 02:03 PM UTC
You can also set
gbc.StyleInfo.Enabled = false;
to see if that will serve your needs. (This column would never be able to hold the current cell if you have this setting.)
If you do not want to disable the column, then you can handle the CurrentCellStartEditing event. If grid.CurrentCell.ColIndex point to this column, you can set e.Cancel = true.
SV
sve
January 13, 2005 02:10 PM UTC
Handle the CurrentCellStartEditing and set cancel to true is exactly what i search.
Thanks very much.