ngx-pagination-bootstrap
is Bootstrap(4) based pagination module for Angular(2+) applications.
npm install ngx-pagination-bootstrap
npm install [email protected] --save-dev
- include bootstrap scripts and styles in you
angular-cli.json
to be build of your build process. - or include bootstrap css in your index.html
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
- Right now
[email protected]
is supported tillv1.5.0
. - Bootstrap
v4.0.0
supported fromv1.6.0
onwards.
- import
PaginationModule
fromngx-pagination-bootstrap
:
import { PaginationModule } from 'ngx-pagination-bootstrap'
- add
PaginationModule
to the imports of your NgModule:
@NgModule({
imports: [
...,
PaginationModule
],
...
})
class YourModule { ... }
- use
<ng-pagination></ng-pagination>
in your templates to add pagination in your view like below
<ng-pagination [position]="'left'" [pageSize]="10" [itemsCount]="data.length" [data]="data" (getPageData)="getPageData($event)"></ng-pagination>
- do not forget to include bootstrap css in your build process, module or index.html!
pageSize: number
- Size of a page i.e number of items to be displayed in one page.itemsCount: number
- total no of itmes that needs ro be paged/total no of records.position: string
- position of the pagination respect to parent contrainer of your pagination component.data: Array
- Optional | the data needs to be paged default is null. If pagination is handled by api no need of data.
getPageData: EventEmitter
- emmited when user navigates to a page. Caputure this and update you view data. The events contains the following info
{
event: event: Event,
pageNo: pageNo: number,
pageSize:pageSize: number,
data: null| Array,
}
- event: the triggered event
- pageNo: current page number
- pageSize: current page size. No of items per page
- data: data is the array of records that belongs to this page. Will be
null
if data was not passed and you can fetch data from your api or the way you want it to handle
- v1.4.1
Added support for Observable Data Source.
Current items range display bug when itemcount 0 bug fix .
- v1.5.0
Angular 4.0.0 support added
Minor bug fixes
- v1.6.0
Bootstrap 4.0.0 supported
Range of items hidden on small devices
Found a bug or an issue with this? Open a new issue here on GitHub.
Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.