New to Kendo UI for Angular? Start a free 30-day trial
DialogsModule
Updated on Jun 13, 2025
Represents the NgModule definition for the Dialogs components.
Use the DialogsModule to include all Dialog and Window components and services in your application.
typescript
import { DialogsModule } from '@progress/kendo-angular-dialog';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, DialogsModule],
bootstrap: [AppComponent]
})
export class AppModule {}