Page 1 of 1

Paginator Pagesize Callback

Posted: 13 Sep 2019, 14:50
by michael_leblanc2
How does one access the change for the Paginator PageSize callback?
There is nothing in the documentation on how to access that change.
Is it part of the onPageChange callback?

Re: Paginator Pagesize Callback

Posted: 16 Sep 2019, 10:08
by mert.sincan
Hi,

You can use onPage callback;

Code: Select all

onPage(event) {
//event.first: Index of the first row.
//event.rows: Rows per page.
}
Best Regards,