Completed
Last Updated: 09 May 2017 10:09 by ADMIN
Created by: SquadWuschel
Comments: 1
Category: Dialog
Type: Feature Request
18
Currently the dialog cannot be opened without placing the dialog in the component template. For some scenarios like confirm dialogs, providing a service that creates the dialog is more convenient.

https://github.com/telerik/kendo-angular2/issues/112
Completed
Last Updated: 22 Jun 2022 13:03 by ADMIN
Created by: Mickey
Comments: 5
Category: Dialog
Type: Feature Request
12

Add configuration inputs for control animation of Dialog component.

 

 
Completed
Last Updated: 13 Jul 2021 11:22 by ADMIN
Created by: Kjartan Valur
Comments: 1
Category: Dialog
Type: Feature Request
10
It would be nice if it was possible to open kendo dialogs with separate component and template like you do in angular material, see below.

https://material.angular.io/components/dialog/overview

let dialogRef = dialog.open(UserProfileComponent, { 
height: '400px', 
width: '600px', 
});

dialogRef.afterClosed().subscribe(result => { 
console.log(`Dialog result: ${result}`); // Pizza! 
});
Completed
Last Updated: 15 Jun 2021 12:26 by ADMIN
Created by: Justin
Comments: 0
Category: Dialog
Type: Feature Request
8
The api should allow for the close of dialog on escape or backdrop click.
Completed
Last Updated: 13 Jul 2021 13:15 by ADMIN
Currently there is no easy way to programmatically close a dialog from within the dialog component. Also it should be possible to a return a reason why the dialog was closed which may be different to the action buttons and the reason should be available when subscribing to the result stream 

Perhaps have a look at the ng-bootstrap dialog and implement something similar. See: https://ng-bootstrap.github.io/#/components/modal/api. If the content of the modal is a component, then nb-bootstrap can inject the dialog instance into the dialog component (using the NgbActiveModal class). The NgbActiveModal class can then be used to programmatically close / dismiss the modal from "inside" the component.
Completed
Last Updated: 13 Jul 2021 06:11 by ADMIN
Please add support for setting width/height in em or %, not just px.
Completed
Last Updated: 02 Jun 2022 13:48 by ADMIN
Created by: Diego
Comments: 1
Category: Dialog
Type: Feature Request
4

As already present on popupService -> https://www.telerik.com/kendo-angular-ui/components/popup/api/PopupSettings/#toc-popupclass

is it possible to have also dialogClass when dialogService is used?

Thanks.

Completed
Last Updated: 07 May 2026 13:44 by ADMIN
Release 2026 Q2

Currently, the (X) close button is always shown and visible. In other words, it is not possible to configure the dialog component to NOT display this icon button. It is actually not just about the icon button, but also the ESC shortcut. It should not be possible to close the dialog when the input is set.

Feature request: Add an input `closable` for the Dialog Component ('kendo-dialog') to be able to turn off the closable behaviour. Example:

```html

  <kendo-dialog [closable]="false"></kendo-dialog>

```

The "closable" is `true` by default, ensuring that it is backwards compatible.


 

Use case: A certain dialog is presented to the user and user must NOT be able to close/ignore the dialog. The user is thus forced to resolve the instructions presented in the dialog and resolve it the intended way.

Completed
Last Updated: 27 Jul 2021 14:22 by ADMIN
Created by: Holger
Comments: 1
Category: Dialog
Type: Feature Request
2
Provide the "buttonLayout" (https://docs.telerik.com/kendo-ui/api/javascript/ui/dialog/configuration/buttonlayout) setting for Dialog and DialogService.

Useful values for layout would we "Stretched", "Start", "Center" and "End".
Completed
Last Updated: 07 Dec 2016 11:15 by ADMIN
Created by: Imported User
Comments: 1
Category: Dialog
Type: Feature Request
1
The main.js file for all modules seem to be kept in the following file structure:
dist/npm/js/main.js

however in the dialog module the main,js file is 
dist/npm/main.js.

This inconsistency causes issues when using systemjs and loading the packages this way.
Completed
Last Updated: 19 Jan 2022 09:37 by ADMIN
Created by: Mauro
Comments: 0
Category: Dialog
Type: Feature Request
1

Currently, the DialogAction only supports setting primary as a configuration.

Could it be extended to also allow other button variants - like look=flat or a cssClass config option?

Passing a template beats the entire purpose of using a service - you need to now add additional local HTML, manually handle button clicks etc.

Completed
Last Updated: 22 Mar 2019 09:02 by ADMIN

Hi,

When opening a dialog with DialogService from an Observable (e.g. in order to initialize dialog with data from a http request) and ChangeDetectionStrategy.OnPush, the dialog is messed up. With ChangeDetectionStrategy.Default everything works fine.

For reproduction have a look to this StackBlitz: https://angular-9vmvyv.stackblitz.io

Regards,
Holger

Completed
Last Updated: 16 Dec 2020 23:11 by ADMIN

Starting with version "4.2.3" the LanguageService fails to be injected into the DialogTitleBarComponent.

This can be easily reproduced in the Single Component Rendering demo.

Link to StackBlitz: https://stackblitz.com/edit/angular-mprlwl?file=app/user-info.component.ts

Kindest regards,
Holger