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>