navigate
Fired when navigatable is enabled and the user changes focus between enabled items or when swapping them using the keyboard navigation.
Important: This event does not expose the
e.actionande.draggableEventproperties. They are only accessible when using the mouse.
Event Data
e.item jQuery
The element that is focused.
Example
<ul id="sortable">
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
</ul>
<script>
$("#sortable").kendoSortable({
navigatable: true,
navigate: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("The " + e.item + "item is focused.");
}
});
</script>
In this article