Unplanned
Last Updated: 02 Jun 2023 14:00 by Gabor
Created by: Josef
Comments: 8
Category: Dialog
Type: Feature Request
6
How could I configure the dialog to NOT close after pressing the escape key
Unplanned
Last Updated: 23 Feb 2023 11:12 by ADMIN

Because of the CSS, if a parent element has used translate (transform: translateX(0px); ) every child element  under it is no longer fixed.

This causes components like kendo-dialog to be relatively positioned inside the drawer - usually cut off.

Even turning off animation still leaves the style rule.

 

  • Disabling animation should also ensure no related CSS is applied (like using transform: none at least)
  • Provide a keyframe based animation instead of translateX (example http://jsfiddle.net/whnuLf6v/50/)
Unplanned
Last Updated: 24 Jun 2022 12:18 by G Walsh
Created by: G Walsh
Comments: 0
Category: Dialog
Type: Feature Request
0

Hi,

Please provide closing animations for the Dialog just like there are animations for the opening.

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: 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: 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.

Declined
Last Updated: 15 Oct 2021 12:31 by ADMIN
Created by: Imported User
Comments: 0
Category: Dialog
Type: Feature Request
1
I need accessibility  support for dialog, h2 in the title, role=alertdialog on the window
Declined
Last Updated: 12 Aug 2021 13:53 by ADMIN
When using the DialogService (or the PopupService), you must pass either a TemplateRef or a Component class to the content property for it to create.  However, if you have a Component that needs special initialization (i.e. constructor parameters) or that you have already created using a factory, you cannot use that as the content for the DialogService/PopupService.  This feature request is to allow the content parameter to be valid if an existing component instance (already created) is passed.
Declined
Last Updated: 29 Jul 2021 13:11 by ADMIN
Created by: Imported User
Comments: 3
Category: Dialog
Type: Feature Request
17
I would like to dialog can drag and set position.
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".
Unplanned
Last Updated: 27 Jul 2021 11:58 by ADMIN

Currently there is no way to provide a component from a lazy-loaded module as content in the Dialog Service. 

We need a way to pass in the correct injector/componentFactoryResolver to use to load the component with.

Further discussion and possible solution are available in the following Angular GitHub threads:

https://github.com/angular/angular/issues/14324

https://github.com/angular/angular/issues/17168

Declined
Last Updated: 26 Jul 2021 13:32 by ADMIN
Currently there is no way to ged rid of 'x' closing button in top right corner. It can be hacked by css globally, but if using the DialogService yoy can not configure if the closing 'x' should be present or not - that would be nice feature
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 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 06:11 by ADMIN
Please add support for setting width/height in em or %, not just px.
Declined
Last Updated: 21 Jun 2021 12:39 by ADMIN
Would like to be able to set the color on the kendo dialog. We have a mobile application that uses dialogs for error reporting and some times informational reporting. Being able to set the color on the Dialog title bar as well as the button color would be a great feature.
Completed
Last Updated: 15 Jun 2021 12:26 by ADMIN
Created by: Justin
Comments: 0
Category: Dialog
Type: Feature Request
7
The api should allow for the close of dialog on escape or backdrop click.
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

 

Unplanned
Last Updated: 15 Oct 2019 16:02 by ADMIN
Created by: Holger
Comments: 1
Category: Dialog
Type: Feature Request
2

I would like to switch off scrollbars for individual dialogs, thus it would be great to have a scrollable (https://docs.telerik.com/kendo-ui/api/javascript/ui/window/configuration/scrollable) option to control this behavior. This should be also available in the configuration of dialog service.

Unplanned
Last Updated: 29 Aug 2019 07:20 by ADMIN
Created by: Mariana
Comments: 1
Category: Dialog
Type: Feature Request
2

Hi,

We need to have it possible to close the active dialog by click on the overlay(backdrop). 

It's very natural as for me and is supported by a lot of libraries for modals/dialogs/windows

1 2