I am trying to display the items based on the page change events.Please see below stackblitz address.
In app.component.html i have mentioned [pageSizes]="true" but drop down is not displaying
Current Behaviour.
1. able to display the pager component on top and it is changing the number of pages by changing the [pageSize]= "5" value.
Expected Behaviour.
1. I want to display the drop down but not with <ejs-dropdownlist> instead i want to display using [pageSizes]="true".
2. It should display the number of items(in <div> tag) per page as per the drop down value changing dynamically.
Example: If number of items is 50 and [pageSizse] is 10 then it should display the 5 pages in the pager component and per page it should display the 10 items.
Instead of 10 items per page, i would like to change the items per page using dropdown so the correponding pages should change in the pager component.