Hi,
I want to disable Sorting in MVC WebGrid? Sorting is present by default in WebGrid, so how can I disable Sorting in MVC Web Grid ASP.Net?
Wherever you declare there you can set the canSort property to False.
@{ Layout = null; WebGrid webGrid = new WebGrid(source: Model, canSort: false); }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.