1.首先設(shè)置datagrid屬性sortName
2.設(shè)置sortOrder
3.設(shè)置remoteSort(注:此屬性默認(rèn)為true,,如果如果是對本地數(shù)據(jù)排序必須設(shè)置為false)
4.設(shè)置列的sortable屬性
<table class="easyui-datagrid" style="height:250px" data-options="url:'${ctx }/template/formgrid!queryUser.ajax',pagination:true, sortName:'code',sortOrder:'asc',remoteSort:false,fitColumns:true,singleSelect:true,loadMsg: '正在加載,請稍后,。,。,。'"> <thead> <tr> <th data-options="field:'id',width:100">ID</th> <th data-options="field:'code',width:100,sortable:true">編碼</th> <th data-options="field:'name',width:100">名稱</th> </tr> </thead> </table> |
|