New to Kendo UI for AngularStart a free 30-day trial

Represents a component for customizing the messages in Dialog and Window components.

Use the CustomMessagesComponent to override default messages with custom text. (See example.).

Definition

Package:@progress/kendo-angular-dialog

Selector:kendo-dialog-messages, kendo-window-messages

Syntax:

TS
import { CustomMessagesComponent } from './custom-messages.component';

@Component({
  selector: 'my-dialog',
  template: `
    <kendo-dialog>
      <kendo-dialog-messages
        [closeTitle]="'Close dialog'"
        [restoreTitle]="'Restore dialog'"
        [maximizeTitle]="'Maximize dialog'"
        [minimizeTitle]="'Minimize dialog'">
      </kendo-dialog-messages>
    </kendo-dialog>
  `
})
export class MyDialogComponent {}

Inputs

Sets the title for the Close button.

Sets the title for the Maximize button.

Sets the title for the Minimize button.

Sets the title for the Restore button.