2010-09-24 2 views
2

Наш jqGrid работает хорошо - если мы вернем> 1 строку, все будет работать.jqGrid не отображает ни одной строки

Но .. если мы вернем только одну строку, сетка не отображает никаких данных, и навигация говорит 1 из NaN. Очень странно - любые идеи?

Это 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 отлично выглядит, вы можете включить объект JSON для двух строк, JS для настройки jqGrid или выводимого HTML. Я использовал jqGrid с одиночными строками просто отлично –

+0

Обновлено post-thx. –

+0

Эта же проблема происходит со мной http://stackoverflow.com/questions/12702106/jqgrid-not-displaying-single-row – user1671219

ответ

3

Ок JSON для 1 не помещает строки в ARRAY он просто положить одну OBJECT

1 Ряд

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

2 Ряды

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

Блок второй JSON имеет строки в [{},{}]

Проверьте свою службу er-side, который выводит JSON.

+0

Должен был увидеть это - спасибо Бобби. –

+0

Нет проблем, jqGrid несколько раз избивал меня до смерти, и это всегда что-то простое;) –