Completed
Last Updated: 03 Jan 2020 14:57 by ADMIN
Dan Cornish
Created on: 09 Nov 2016 14:00
Category: Kendo UI for jQuery
Type: Feature Request
25
Modify the title of the predefined dialogs
We need the ability to modify the title of the new predefined dialog control.  This control is a great replacement for JavaScript alerts and confirms.  However, we should be able to modify the title by passing in an additional parameter when using the control.

Below is a workaround using CSS:

    <style>
        .k-confirm .k-window-titlebar::before,
        .k-alert .k-window-titlebar::before {
            content: 'My New Title';
            font-weight: bold;
        }
        .k-confirm .k-window-titlebar .k-dialog-title {
            visibility: collapse;
        }
        .k-dialog .k-window-titlebar .k-dialog-title {
            visibility: hidden;
        }
    </style>
2 comments
ADMIN
Viktor Tachev
Posted on: 03 Jan 2020 14:57

Hello,

 

The Kendo Dialog title can be specified via the title property. Check out the API reference below that illustrates the option:

https://docs.telerik.com/kendo-ui/api/javascript/ui/dialog/configuration/title

 

Regards,
Viktor Tachev
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Palani
Posted on: 31 Mar 2017 12:39
Great thanks