AD
Administrator
Syncfusion Team
April 18, 2007 12:25 AM UTC
Instead of setting style.ReadOnly = true, try setting style.Enabled = false. This should prevent the particular cell from ever being the current cell.
this.gridControl1[2, 3].Enabled = false;
//this.gridControl1[2, 3].ReadOnly = true;
JL
Julie Levy
April 18, 2007 05:02 PM UTC
thanks!
This works great, much easier than trying to handle the MoveCurrentCellDirection event.