New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Hint
Updated over 6 months ago
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>