当我在 mvc 项目中将 web 网格添加到我的页面时,它会在第一次单击时对数据进行升序排序。但我带来了已经按升序排序的数据。然后什么也没有发生。我希望 webgrid 首先按降序排序。
你可以看到我创建网格的代码
var grid = new WebGrid(Model, canPage: true, rowsPerPage: 5,
selectionFieldName: "selectedRow",ajaxUpdateContainerId: "gridContent");
grid.Pager(WebGridPagerModes.NextPrevious);
顺便说一句,我尝试了下面的代码,但它不起作用。
if (Request.QueryString[grid.SortDirectionFieldName].IsEmpty())
{
grid.SortDirection = SortDirection.Descending;
}