Hello, in the angular solution, all of the grids that are generated have paging. Is there a simple way to configure a grid to display all rows, and not use paging?
Thanks
6 Answer(s)
-
0
HI @abrewer, can you provide your ANZ version and framework?
-
0
its the latest version
-
0
- What is your product version?
- What is your product type (Angular or MVC)?
- What is product framework type (.net framework or .net core)?
-
0
7 angular .net core
-
0
Hi @abrewer
The records are paged on the server side according to sent parameters to server. So, for specific pages, instead of using below lines;
this.primengTableHelper.getMaxResultCount(this.paginator, event) this.primengTableHelper.getSkipCount(this.paginator, event)
You can use
0
forthis.primengTableHelper.getSkipCount(this.paginator, event)
and a high number forthis.primengTableHelper.getMaxResultCount(this.paginator, event)
in your components. But, use this carefully otherwise, there will be performace problems on your server :) -
0
This issue is closed because of no recent activity. Please open a new issue if you are still having this problem.