• cancel ()
    Discard the current drag. Calling the cancel method will trigger the cancel event. The correct moment to call this method would be in the start event handler.

    Cancel the drag event sequence

    new kendo.Drag($("#foo"), {
     start: function(e) {
         e.cancel();
     }
    });
  • capture ()
    Capture the current drag, so that Drag listeners bound to parent elements will not trigger. This method will not have any effect if the current drag instance is instantiated with the global option set to true.