asp.net mvc 3 webgrid sorting remains ?sortdir=ASC

后端 未结 4 1197
谎友^
谎友^ 2021-02-04 08:54

I\'m experimenting a bit with several grids in asp.net mvc. Microsoft has a grid too know in the prerelease of mvc 3 so I thought I\'ll try that one out.

The basic funct

4条回答
  •  感动是毒
    2021-02-04 09:21

    I fixed this issue in MVC 4 by setting the 'SortColumn' prop. of the grid to the value of "sort" Query String param.:

    grid = new WebGrid(...
    grid.Bind(Model...
    
    grid.SortColumn = this.Request.QueryString["sort"];
    
    @grid.GetHtml(columns:...
    

    I noticed that for 'Date' columns in my model 'SortColumn' prop. was set to the name of default sort column regardless of the value of "sort" Query String param...

提交回复
热议问题