New to Kendo UI for Angular? Start 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
Name | Type | Default | Description |
---|---|---|---|
closeTitle |
|
Sets the title for the Close button. | |
maximizeTitle |
|
Sets the title for the Maximize button. | |
minimizeTitle |
|
Sets the title for the Minimize button. | |
restoreTitle |
|
Sets the title for the Restore button. |