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

Hint

By default, the Sortable renders a hint.

To disable that behavior, set the hint to an empty function by using jQuery.noop.

    @(Html.Kendo().Sortable()
        .For("#sortable")
        .HintHandler("noHint")
    )

    <script>
        var noHint = $.noop;
    </script>

See Also

In this article