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

CustomMessagesComponent

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

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

typescript
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 {}

Selector

kendo-dialog-messages, kendo-window-messages

Inputs

NameTypeDefaultDescription

closeTitle

string

Sets the title for the Close button.

maximizeTitle

string

Sets the title for the Maximize button.

minimizeTitle

string

Sets the title for the Minimize button.

restoreTitle

string

Sets the title for the Restore button.

In this article
SelectorInputs
Not finding the help you need?
Contact Support