cursor String(default: "auto")

The cursor that will be shown while user drags sortable item.

Example - setting cursor to move

<ul id="sortable">
    <li>ItemA1</li>
    <li>ItemA2</li>
    <li>ItemA3</li>
</ul>

<script>
    $("#sortable").kendoSortable({
        cursor: "move"
    });
</script>
In this article