New to Kendo UI for Angular? Start a free 30-day trial
PagerModule
Represents the NgModule
definition for the Pager component. Imports PagerModule
into the
root module
of your application or into any other sub-module that will use the Pager component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { PagerModule } from '@progress/kendo-angular-pager';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, PagerModule]
})
export class AppModule {
}