ignore String(default: null)

Selector that determines which elements inside the sorted item's container will be ignored. Useful if the sortable item contains input elements.

Example - Sortable widget with input elements

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

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