Hi,
When the Tab key is pressed the active cell change to its rightmost cell of the current cell. And this process is reversed when Shift + Tab is pressed.
In my application the some of the cells are not editable, so while navigating with Tab and Shift + Tab, if the activating cell is found to non editable then is it possible to move the focus to the next cell?
How can we do this in simplest way.
Regards,
Ceaser
You probably want to use the TabStop on the column, rather than the cell. :)
Hello Ceaser,
It is possible to do that with the TabStop property of the cell. If you know which cells are exactly non editable, you should set their TabStop property to false. You can use this code snippet in InitializeLayout event of your grid:
ultraGrid1.DisplayLayout.Rows[Index].Cells[Index].TabStop = DefaultableBoolean.False;
Please let me know if you need further assistance.
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.