I have a grid using the row selection model, defined as:
selectionModel: { type: 'row', mode: 'single' },
When the user clicks a row, the row is selected correctly. But when the user hits the arrow down key from the keyboard, the behaviour expected is: deselect the current selected row and select the next row, but instead the "cell cursor" moves to the next line without any kind of selection.
Is there a way to make the down/up keys select the next/previous row?