
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular2-bootstrap-pagination
Advanced tools
angular2-bootstrap-pagination is angular2 directive. It will generate pagination or this directive must need boostrap package
angular2-bootstrap-pagination is angular2 directive.
The sources for this package are in (https://github.com/rajan-g/angular2-bootstrap-pagination.git) repo. Please file issues and pull requests against that repo.
###Install from npm
npm install angular2-bootstrap-pagination
/*
* @author RAJAN G
*/
//module file
import {PaginationDirective} from '../directives/pagination.directive';
//include pagination directive
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [AppComponent, PaginationDirective],
bootstrap: [ AppComponent ]
})
import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
template: `<ng-pagination [totalItems]="totalItems" [(ngModel)]="currentPage" [maxSize]="maxSize" [boundaryLinks]="true" (pageChanged)="pageChanged($event)"
previous-text="‹" next-text="›" first-text="First" last-text="Last">`,
})
export class AppComponent {
public currentPage:number = 1;
public totalItems:number = 200; // total numbar of page not items
public maxSize:number = 10; // max page size
constructor() {
}
public setPage(pageNo:number):void {
this.currentPage = pageNo;
};
public pageChanged(event:any):void {
//this method will trigger every page click
console.log('Number items per page: ' + event.itemsPerPage);
};
}
npm install
npm start
FAQs
angular2-bootstrap-pagination is angular2 directive. It will generate pagination or this directive must need boostrap package
We found that angular2-bootstrap-pagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.