Kendo UI for jQuery Sortable Overview
The Sortable provides a sortable drag-and-drop functionality to elements within a list.
The Sortable does not support integration with the Kendo UI TreeList component.
The Sortable is part of Kendo UI for jQuery, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the Sortable
To initialize the Sortable, use an existing HTML element and enable the reordering of the element children.
The following example demonstrates how to initialize Sortable by using jQuery plugin syntax.
<ul id="sortable">
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
</ul>
<script>
$("#sortable").kendoSortable();
</script>