2010-09-24 85 views
2

我们的jqGrid运行良好 - 如果我们返回> 1行一切正常。jqGrid不显示单行

但是..如果我们只返回一行,网格不会显示任何数据,导航栏中会显示NaN中的1。非常奇怪 - 任何想法?

这是返回的JSON为单行:

{"records":"1","page":"1","total":"1","rows":{"cell":["ECS","D","201009","","0","ABCD","0","0","","201009"],"id":"692334"}} 

对于两行:

{"records":"2","page":"1","total":"1","rows":[{"cell":["BJL","F","201008","","0","ABCD","0","0","","201008"],"id":"724588"},{"cell":["BJL","F","201008","","0","ABCD","15","10","","201008"],"id":"728676"}]} 

加载/重载我们有格:

function reloadGrid(u, grid) { 
    if (u!= null) { 
     grid.setGridParam({url:u}); 
    } 

    grid.setGridParam({page:'1', datatype:'json', loadonce:'true'}); 
    grid.trigger("reloadGrid"); 
} 

而且电网本身:

$("#list").jqGrid({ 
url:'NoData.json', 
datatype: 'json', 
mtype: 'GET', 
colNames:['Product', 'Type','Expiry', 'Put Call', 'Strike', 'Account','Long','Short', 'Open Qty', 'LTD', 'Operations'], 
colModel :[ 
    {name:'product', index:'product', width:75}, 
    {name:'type', index:'type', width:50, align:'right'}, 
    {name:'expiry', index:'expiry', width:60, align:'right'}, 
    {name:'putCall', index:'putCall', width:65}, 
    {name:'strike', index:'strike', sorttype: 'float', width:70}, 
    {name:'account', index:'account', width:70}, 
    {name:'long', index:'long', sorttype: 'int', width:55, align:'right'}, 
    {name:'short', index:'short', sorttype: 'int', width:55, align:'right'}, 
    {name: 'openQty', index:'openQty', width:80, align:'center', sortable:false, search:false, formatter:closeoutFormatter}, 
    {name:'LTD', index:'LTD', width:65, align:'right'}, 
    {index:'operations', width:105, title:false, search:false, align: 'center', formatter:opsFormatter, sortable:false} 
], 
pager: '#pager', 
scrollOffset:0, //No scrollbar 
rowNum:15, 
width:'100%', 
viewrecords: true , 
caption: 'Positions', 
height: '360', 
hidegrid: false //Don't show the expand/collapse button on the top right 
}).navGrid("#pager",{edit:false,add:false,del:false, 
beforeRefresh: function(){ 
    reloadPositionGrid(); //Required so that we go to the server and not reload local data 
} 
}); 
+1

JSON看起来不错,您可以包含2行的JSON对象,设置jqGrid的JS或输出的HTML。我用单行jqGrid就好了 – 2010-09-24 14:51:05

+0

更新后的thx。 – 2010-09-24 14:57:22

+0

同样的问题发生在我身上 http://stackoverflow.com/questions/12702106/jqgrid-not-displaying-single-row – user1671219 2012-10-03 04:55:44

回答

3

确定的JSON为1没有把行中的ARRAY它只是把一个OBJECT

1行

{"":"", "rows":{"cell":["",""], "id": "111"} 

2排

{"":"", "rows":[{"cell":["",""], "id": "111"}, {"cell":["",""], "id": "222"}]} 

第二JSON块具有[{},{}]

检查您的伺服器输出JSON的er端代码。

+0

应该看到 - 谢谢Bobby。 – 2010-09-24 15:06:04

+0

没问题,jqGrid击败了我几次,总是很简单;) – 2010-09-24 15:07:32