New to Telerik UI for ASP.NET Core? Start a 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
.
Razor
@(Html.Kendo().Sortable()
.For("#sortable")
.HintHandler("noHint")
)
<script>
var noHint = $.noop;
</script>