我有一个网格,我填充本地数据,但尝试我尝试排序数据没有任何反应。我也尝试了下面提到的方法 1使用onSortCol 2 sortname和sortorder
function Gridcall() {
debugger;
$('#JqGrid_table').jqGrid(
{
dataType: 'local',
sortable: true,
colNames: ['SLA', 'Type', 'Subject', 'Segment', 'Status'],
colModel: [
{
name: 'SlaField',
index: 'SlaField',
formatter: 'showlink',
sortType:'string'
},
{
name: 'TypeField',
index: 'sort',
formatter: 'showlink'
}
],
sortname: "SlaField",
sortorder: "desc"
}
);
HtMl代码
<div>
<table id="JqGrid_table" class="scroll">
<tr>
<table id="table1"></table>
</tr>
</table>
<button id="btn">Get</button>
</div>
</body>