valor-software/ng2-bootstrap

View on GitHub
demo/src/app/components/+pagination/demos/manual-switching/manual-switching.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';

@Component({
  selector: 'demo-pagination-manual-switching',
  templateUrl: './manual-switching.html'
})
export class DemoPaginationManualSwitchingComponent {
  totalItems = 64;
  currentPage = 4;

  setPage(pageNo: number): void {
    this.currentPage = pageNo;
  }
}