JQ响应未在JQGrid中加载

时间:2012-11-06 05:57:41

标签: jqgrid struts2

我尝试了解决这个问题的解决方案。但是,它仍然没有用。我觉得JSON响应的格式不正确。

在struts2中实现了JQGrid。在操作中创建一个用户列表,并在struts.xml中使用结果类型作为json返回为json类型。

这是我获得的Json,

{"JSON":"success","userList":[{"fName":"abi","lName":"babu"},{"fName":"abi1","lName":"babu1"},{"fName":"abi2","lName":"babu2"},{"fName":"abi3","lName":"babu3"},{"fName":"abi4","lName":"babu4"},{"fName":"abi5","lName":"babu5"},{"fName":"abi6","lName":"babu6"}]}

JSP页面是,

 <script type="text/javascript">
    $(function () {
        'use strict';
        $("#datagrid").jqGrid({
            url: "json-table",
            datatype: "json",
            colNames:['fName','lName'],
            colModel:[
                {name:'fName',index:'fName', key:true, width:100,editable:true,editoptions:{size:10}},
                {name:'lName',index:'lName', width:100,editable:true},
            ],
            rowNum:10,
            rowList:[3,6],
            loadonce: true,
            pager: '#navGrid',
            sortname: 'fName',
            sortorder: "asc", 
            height: "auto", //210,
            width:600,
            onSelectRow: function(id) {
                var getID = $(this).jqGrid('getCell', id, 'fName');
            },
            viewrecords: true,
            caption:"JQ GRID"
        });
    });
</script>

任何帮助都将受到高度赞赏。感谢。

1 个答案:

答案 0 :(得分:0)

您只需要包含符合输入数据格式的jsonReader参数:

jsonReader: {root: "userList", repeatitems: false}

请参阅the demo