自定义分页
数据网格(datagrid)内置一个很好特性的分页功能,自定义也相当简单,只需要将 'pagination' 属性设置为 true。
如下实例代码:
<table class="easyui-datagrid" title="Basic DataGrid" style="width:600px;height:250px"
data-options="singleSelect:true,collapsible:true" id='dg' pagination="true">
<thead>
<tr>
<th field="ck" checkbox="true"></th>
<th data-options="field:'itemid',width:80">Item ID</th>
<th data-options="field:'productid',width:100">Product</th>
<th data-options="field:'listprice',width:80,align:'right'">List Price</th>
<th data-options="field:'unitcost',width:80,align:'right'">Unit Cost</th>
<th data-options="field:'attr1',width:100">Attribute</th>
<th data-options="field:'status',width:60,align:'center'">Status</th>
</tr>
</thead>
</table>
关于分页的属性设置还有很多,比较简单,就不在这里具体介绍,大家可以看这里。