我正在尝试对 jqgrid onload 进行排序,这里是网格的代码。
url:"",
datatype: 'json',
colNames:['col1', 'col2'],
colModel:[{name:'col1',index:'col1', search:false, sortable:true},{name:'col2',index:'col2', search:false, sortable:true} ],
paging:true,
pager: $("#page"),
loadonce:true,
sortable:true,
caption: 'my table',
shrinkToFit:shrinkToFit,
forcefit:true,
viewrecords: true,
sortname:'col1',
sortorder:'desc',
autowidth:true,
multiselect: true,
autoheight:true
但它没有得到排序。我想对第一列的网格进行排序。