Hi,
I have integrated filters with the pagination.
If i set remote pagination and remoteFilter, pagination is not working.
So i changed my code according to the below link
http://stackoverflow.com/questions/25698071/easyui-filter-and-serverside-pagination-jquery-conflict- Both pagination and filters are working for less amount of records(5000 Max). It is building the pagination locally not remotely.
- If i test this with 100000 records. It is not loading the records.
DataGrid Config:dataTable.datagrid({
pagination:false,
remoteFilter:true,
pageSize:50,
remoteSort:true,
url="userList.htm"
});
<table id="usersTable" class="easyui-datagrid work_table work_table1" style="width: 100%; height: 98% !important"
sortName="employeeNo" sortOrder="asc" rownumbers="false" toolbar="#toolbar"
data-options="singleSelect:true, onDblClickRow:userManagement.getDataById">
Please help me to fix this issue.
Thanks