I have a kendo ui grid. Let's say that the JS variable pointing to the grid is called grid
. How can I go to page 3 programmatically? Thanks.
You might to use:
grid.dataSource.query({ page: 3, pageSize: 20 });
Documentation in here.
or:
grid.dataSource.page(3);
Documentation in here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With