0

在 MVC4 Web Grid 中,我从服务器端绑定 Web Grid 以实现高效的分页和排序。除一列(即列的数据类型为 ENUM)外,所有列的排序工作正常。

我已尝试使用此站点中存在但无法正常工作的 grid.bind() 示例。请帮我

4

1 回答 1

0

我有同样的问题 - 它不会对枚举进行排序。因此,当我将枚举添加到列表时,我只是简单地调用了 .ToString() :

        private void CreateReport(int id, string name, 
          ReportType type, Relationshiplevel level, string date, string createdby,
                              string filetype, double filesize)
        {
          var newReport=new Report
            {
                Id = id,
              Name  = name,
              Reporttype = type.ToString(),
              Relationshiplevel = level.ToString(),
              CreatedDate = DateTime.Parse(date),
              CreatedBy = createdby,
              FileType = filetype,
              FileSize = filesize
            };
        _reports.Add(newReport);
       }

现在工作正常

于 2013-10-10T10:39:55.820 回答