New to Telerik UI for ASP.NET Core? 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>
    <kendo-sortable name="sortable" hint="noHint">
    </kendo-sortable>

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

See Also

In this article