CustomMessagesComponent
Directive
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
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.