Table selection with keyboard

Hi,

When using the table component and having single row selection enabled, I cannot seem to do table selections using only the keyboard, it just skips through the data entries in the table without the possibility to hover entries at all. Is there a way around this, or something I might have missed?

Hi!

There is currently not a built in feature to select elements in a table with the keyboard.

But you can implement your own keyboard shortcuts to maybe solve you problem.

Here you can find a article about keyboard shortcuts in the docs:

In youre case you could implement arrow-up and arrow-down to select the next or previous object in the datasource.

NB!! unfortunately this approach will not work in combination with the built in sorting options or filters in the table. Since the selection is set on the datasource and next/previous is based on the sorting and filtering in the datasource and not it’s representation in the UI.