Posts

Showing posts from December, 2017

server-side pagination with EasyUI (easyui-pagination)

<div class="easyui-panel"> <table id="dg" title="Customer Profile" class="easyui-datagrid" style="width:100%;height:350px" url="CustomerProfile/LoadAllCustomers" toolbar="#toolbar" pagination="FALSE" rownumbers="true" fitcolumns="true" singleselect="true"> <thead> <tr> <th data-options="field:'Id',hidden:true">ID</th> <th data-options="field:'CardNo'">Card No</th> <th data-options="field:'FullName'">Full Name</th> <th data-options="field:'Gender'">Gender</th> <th data-options="field:'Email'">Email</th> <th data-options="field:'M...