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