ngx-pagination is a library in AngularJs which provides the property to do pagination. It calculates how many pages to be displayed for user to select from based on current page, page size and total items.
Questions tagged [ngx-pagination]
79 questions
1
vote
1 answer
ngx-pagination "RangeError: Maximum call stack size exceeded"
I'm using the ngx-pagination package in an Ionic with Angular application.
As you can see in the attached Stackblitz, I created a custom component which receives two input params currentStep and totalItems. We start in the HomeComponent page. If we…

chick3n0x07CC
- 678
- 2
- 10
- 30
1
vote
1 answer
ngx pagination, How to have multiple paginations with NgFor? Issue with my code, (pagechange) is manipulating component data
I have multiple paginations with ng-for. For multiple instances, I'm using the variable from ng-for to repeat paginations, but (pagechange) event is mutating data. when I change page in child pagination, it is changing data(first_name). I have a…

sandeep ganesana
- 11
- 2
1
vote
0 answers
angular + pagination + page resets to 1 on navigation to secondary outlet
I have implemented a custom pagination component using PaginationControlsDirective.
I have a requirement where in I have to open a dialog component (pop up) as a secondary outlet from the pagination component.
Scenario is:
Have a parent…

sachin prasad
- 11
- 2
1
vote
0 answers
NGX-Pagination with dropdown paging
I m using ngx-pagination and try to convert the paging into drop down (Angular 6)
See for detail:
https://github.com/michaelbromley/ngx-pagination
First Prev DDOWN NEXT LAST
1
vote
2 answers
ngx-pagination: Angular 6 server side implementation
I'm attempting to use ngx-pagination to implement server side pagination on my Angular 6 application.
I've followed the documentation to best of my ability but I've encountered the following problems and don't know how to proceed.
Problems
The…

carlhandy
- 315
- 1
- 8
- 22
1
vote
1 answer
How to remove the restriction of output information using pagination?
I use Ngx-pagination. And the amount of data is displayed as much as I set in "totalItems". That is, if I specify more data than there are in JSON, then extra empty pages are added. And this is not good. How to do this, automatically determine the…

user10254427
- 131
- 4
1
vote
2 answers
cannot resolve symbol NgxPaginationModule
I am trying to use NgxPaginationModule in my Angular5 project cannot resolve symbol NgxPaginationModule, I followed all step as documented
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from…

Kumail Hussain
- 869
- 2
- 26
- 49
1
vote
3 answers
add pagination for table angular5
I want to add pagination for table i have tried ngx-pagination but it seems to be not working with angular5:
just an example
have…
{{ x.Name }} | {{ x.Country }} |

Kumail Hussain
- 869
- 2
- 26
- 49
1
vote
1 answer
ngx pagination in Angular 5 is not working properly
I have already installed ngx-pagination in one of my angular 5 project with laravel 5.5. My Angular project is consuming APIs from Laravel. I have included the following in the HTML, ts, and service files as follows:
// ts file
getPage(number){
…

Niladri Banerjee - Uttarpara
- 2,219
- 8
- 52
- 92
1
vote
1 answer
ngx-pagination in Angular 4 without totalItems
I'm relying on a REST service that allows for pagination,
ex: http://10.127.2.20:23700/v1/telname?filterCriteria.pageSize=25&filterCriteria.pageNumber=1
If you don't provide these values then the default is usually pageSize 25 and pageNumber 1.…

Steve
- 467
- 7
- 28
0
votes
1 answer
Pulling the firebase documents those that comes before/above the specified document
Is there a way we can pull the Firebase documents that comes before/above the specified document Id.?? If so can someone please suggest to me how I can achieve that?
I'm using the ngx-pagination and I'm not pulling all the documents at once. Im…

Ashwini B
- 23
- 8
0
votes
3 answers
Ngx-Pagination change default blue color to other color
I am using ngx-pagination in Angular 16 application and I want to customize the default blue color into another , Can anyone help me.
Html code:
CSS
.ngx-pagination…

Surendra Mourya
- 593
- 3
- 8
- 29
0
votes
1 answer
Angular - Search filter only works for the current page in Angular Pagination Search
In Angular-15, I am implementing search filter in my ngx-pagination with server side pagination. Precisely, I have a search text input. I have this code:
JSON Response:
{
"data": {
"pageItems": [
{
"id":…

Ayobamilaye
- 1,099
- 1
- 17
- 46
0
votes
1 answer
Search filter does not correspond with pagination in ngx-pagination
I am implementing ngx-pagination with server side pagination in ASP.NET Core-6 Web API. Precisely, I have a search text input. I have this code:
JSON Response:
{
"data": {
"pageItems": [
{
"id":…

Ayobamilaye
- 1,099
- 1
- 17
- 46
0
votes
1 answer
PageSizeOnChange not working in ngx-pagination
In Angular-14, I am implementing ngx-pagination with server side pagination in ASP.NET Core-6 Web API. I have this code:
JSON Response:
{
"data": {
"pageItems": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"userId":…

Ayobamilaye
- 1,099
- 1
- 17
- 46