1

我的是一个 MVC 项目。在我看来,我正在进行 AJAX 调用以获取 JSON 数据。当我使用 javascriptDeserializer 反序列化我的类时,从我的控制器中,我得到以下信息

{
    "page":1,
    "total":2,
    "records":2,
    "rows":[
        {"id":1,"cell":["ToolVersion","1","ESP","1.2","2/2/2013"]},
        {"id":2,"cell":["ToolVersion","2","OPT","1.3","3/3/2013"]}
    ]
}

动作方法如下

var lst = obj.GetDetails(); // this returns the instance of MyCustomJQGrid class.
return Json(new
{
    total = 2,
    page = 1,
    records = 2,
    rows = lst.rows.ToArray()
}, JsonRequestBehavior.AllowGet);

public class MyCustoMJQGrid
{
    public class Row
    {
        public int id { get; set; }
        public List<string> cell { get; set; }
        public Row()
        {
            cell = new List<string>();
        }
    }

    public int page { get; set; }
    public int total { get; set; }
    public int records { get; set; }
    public List<Row> rows { get; set; }
    public JQGrid()
    {
        rows = new List<Row>();
    }
}

鉴于,我使用下面的代码

$('#list2').jqGrid({
        url: '@(Url.Action("GetToolVersionDetails", "Admin"))',
        datatype: 'json',
        colNames: ['TableName','RowId', 'ColA', 'ColB', 'ColC'],
        mtype: 'GET',
        colModel: [
                    { name: 'TableName', index: 'TableName', width: 150 },
                    { name: 'RowId', index: 'RowId', width: 150 },
                    { name: 'ColA', index: 'ColA', width: 250 },
                    { name: 'ColB', index: 'ColB', width: 250 },
                    { name: 'ColC', index: 'ColC', width: 250 }
        ],
        jsonReader: {
            root: 'rows',
            total: 'total',
            page: 'page',
            records: 'records',
            cell: 'cell',
            id: 'id',
            repeatitems: false
        },
        rowNum: 10,
        rowList: [5, 10, 20, 30],
        pager: $('#gridpager'),
        sortname: 'RowId',
        viewrecords: true,
        sortorder: 'asc',
        caption: 'Tool Version',
        shrinkToFit: true,
        width: $('#gridContainer').width(),
        height: 200,
        hidegrid: false,
    });

jqgrid 显示两个空行。没有数据显示。它只显示一个有两行的空白表。JSON 数据未显示。

请帮忙。

谢谢。

4

1 回答 1

1

我建议您安装和使用MvcJqGridnuget 包,以获得带有 mvc 助手的全功能流畅网格解决方案。

它表示用于选择、过滤和排序行的存储库类。它还代表一种GridSettings类型,您可以在控制器中简单地使用该类型将数据行放入 json 响应中并将其发送到视图。

例子在这里

存储库类的代码在这里。您还可以在那里找到所有其他必需的代码

于 2013-08-22T10:02:18.330 回答