navigatable Boolean
(default: false)
A value indicating whether keyboard navigation will be enabled.
Note: When reorderable is enabled after reordering the items the DOM are also reordered.
Example - enable the keyboard navigation
<script id="first" type="text/x-kendo-template">
<h3>A</h3>
</script>
<script id="second" type="text/x-kendo-template">
<h3>B</h3>
</script>
<div id="tilelayout"></div>
<script>
$("#tilelayout").kendoTileLayout({
containers: [
{
colSpan: 1,
rowSpan: 1,
header: {
text: "Item one"
},
bodyTemplate: kendo.template($("#first").html())
},
{
colSpan: 1,
rowSpan: 1,
header: {
text: "Item two"
},
bodyTemplate: kendo.template($("#second").html())
}
],
navigatable: true,
columns: 4
});
</script>