New to Kendo UI for Angular? Start a free 30-day trial
MultiViewCalendarModule
Required for adding all MultiViewCalendar features in NgModule-based Angular applications. The package exports:
CellTemplateDirective
—The month cell template directive.MonthCellTemplateDirective
—The month cell template directive.YearCellTemplateDirective
—The year cell template directive.DecadeCellTemplateDirective
—The decade cell template directive.CenturyCellTemplateDirective
—The century cell template directive.WeekNumberCellTemplateDirective
—The month week number cell template directive.HeaderTitleTemplateDirective
—The header title template directive.
ts
// Import the MultiViewCalendar module
import { MultiViewCalendarModule } from '@progress/kendo-angular-dateinputs';
// 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, MultiViewCalendarModule], // import MultiViewCalendar module
bootstrap: [AppComponent]
})
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);