FilterModule
Class
Represents the NgModule definition for the Filter component.
Definition
Package:@progress/kendo-angular-filter
Syntax:
ts
// Import the Filter module
import { FilterModule } from '@progress/kendo-angular-filter';
// The browser platform with a compiler
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
// Import the app component
import { AppComponent } from './app.component';
// Define the app module
_@NgModule({
declarations: [AppComponent], // declare app component
imports: [BrowserModule, FilterModule], // import Filter module
bootstrap: [AppComponent]
})
export class AppModule { }
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);