navigatableBoolean(default: false)
If set to true the user could navigate the component using the keyboard navigation. By default keyboard navigation is disabled.
Example - enable keyboard navigation
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "name" },
    { field: "age" }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30 },
    { name: "John Doe", age: 33 }
  ],
  navigatable: true,
  selectable: true
});
</script>
Check Keyboard navigation for a live demo.
In this article