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: 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: 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 06:11 by ADMIN
Please add support for setting width/height in em or %, not just px.
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: 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: 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: 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: 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: 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.