I have kendo grid with custom search form . In my search form i have submit and reset button . If something search then the grid will update with searched filter datasource, and click reset the grid will get refresh with new datasource. My problem is without reset If i change the pagesize value 10 to 20 and i click reset the grid ..then the grid pagesize change into 20 to 10 ...If i click next page then the pagesize remain 20 for second page, 10 for first page
How do i resolve this ? Any idea ? My code for pageable:
pageable: {
pageSizes: [10,20, 30, 50],
buttonCount: 5,
messages: {
itemsPerPage: "Items per page",
first: "First",
previous: "Prev",
next: "Next",
last: "Last",
}
},