If set to true, the user can navigate the component with the keyboard. By default, keyboard navigation is disabled.

Example - enabling keyboard navigation

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    columns: {
        fieldColumn: { width: 200 },
        valueColumn: { width: 250 }
    },
    model: {
        foo: "bar",
        baz: 5
    },
    navigatable: true
  });
</script>
In this article