New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Ignore

Using the IgnoreSelectors you specify elements within a Draggable that should not trigger the Drag functionality.

Example

<telerik:RadDraggable runat="server" IgnoreSelectors="input" TargetSelectors="#IgnoreDraggable">
</telerik:RadDraggable>
<div id="IgnoreDraggable">
    <input type="text" />
    <div>Foo</div>
</div>
<style>
    #IgnoreDraggable {
        width: 50px;
        height: 50px;
        border: 2px solid green;
        margin: 5px;
    }

    #IgnoreDraggable input {
        width: 100%;
        box-sizing: border-box;
    }
</style>
In this article