How do I setup the grid to allow moving around the cells using the arrow key or the tab key. I want to be able to navigate the cells like I can in Excel.
In case anyone stumbles upon this post, I was having the same issue where keyboard navigation was not working in my WebDataGrid.
I had to enabled the following behaviors:
Activation
Selection (make sure Selection.RowSelectType = none)
I now have the cell navigation working using the arrow and tab keys. I just had one property wrong. Now I am on to the next problem, thanks!
Are you using the WebDataGrid control? If so, then you need to turn on the "Activation" behavior and you can use the common navigation keyboard keys like
Even other cases like Shift + Tab/Enter are implementated to mimic excel behavior. We have created some videos from which you can learn more about the grid. Goto:
https://ko.infragistics.com/products/aspnet/grids-and-lists/data-grid#Demos
Hope this helps.
Taz.