Hi,
In Access there is a property for every control named "Tab Stop" /Boolean
It is obvious that when is set to false, tab key jumps over the control and stops to the next one with the tab stop property set to true.
This is very useful when there are controls that you only want to use rarely or only by mouse.
In igrid, it could be implemented by setting CellSelectable to false and turn it temporary back to true on click event.
But then you lose multiselection on these cells!
Another approach is to leave the cells selectable and trap keydown to change the behavior of tab key but then a problem surface when you press tab after editing a cell.
In this case no key is trapped in keydown event.
So the focus moves to the next selectable cell.
I have three columns, one requires edit rapidly, one needs edit rarely (with click) and the other one should be multi-selectable.
Is there any other approach that tab would move only through the rapidly edited column?