ignore Selector

Specifies child elements for which the drag will not be initialized. Useful if the draggable contains input elements.

Example

<div id="container">
    <input type="text" />
    <div>Foo</div>
</div>

<script>
  $("#container").kendoDraggable({
    ignore: "input",
    hint: function(element) {
      return element.clone();
    }
  });
</script>
<style>
    #container {
        width: 50px;
        height: 50px;
        border: 2px solid green;
        margin: 5px;
    }
    #container input
    {
        width: 90%;
    }
</style>
In this article