Declined
Last Updated: 02 Aug 2023 15:03 by ADMIN
Created by: Cyril
Comments: 2
Category: Window
Type: Feature Request
1

Hi,

It would be nice if it was possible to set responsive width and height attributes for the Kendo UI window component (vh, vw, %, ...).

We have a fully responsive app and having to deal with pixel settings is limitating.

On resize, it could be converted to px.

Regards

Unplanned
Last Updated: 28 Jul 2023 11:52 by ADMIN

Hi,

It would be a nice feature for the WindowService and DialogService settings to have a themeColor property.

Unplanned
Last Updated: 22 Jun 2023 12:56 by Hannah

Hi, Team!

As of now, the Window component, when in a maximized state, does not resize according to the dimensions of the browser window. I would like to request such a feature that the maximized Window resizes according to the browser window size. 

Completed
Last Updated: 09 Jun 2023 08:42 by ADMIN
Created by: Austin
Comments: 4
Category: Window
Type: Feature Request
9

Please provide a feature that allows to prevent the default actions of the built-in Window actions similar to the feature available for the Dialog:

https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/service/#toc-action-prevention

thank you

 
Unplanned
Last Updated: 23 Nov 2022 13:12 by ADMIN
Created by: Axel
Comments: 1
Category: Window
Type: Feature Request
0

Currently, there is no way to configure (add or remove) action buttons using Angular service.

Perhaps, we can add additional settings here like this(?)

minimize: true,

maximize: true,

restore: true,

close: true 

It can be also an array of actions that will allow also to arrange them depending on which index they are in the array.

Declined
Last Updated: 28 Jul 2022 08:31 by ADMIN
Created by: Seyfor
Comments: 2
Category: Window
Type: Feature Request
7

Please support out of the box support for modality. I know there is how to, but out of the box, for such basic feature seems reasonable.

Also suggested how to doesn't work for windows initialised through service.

This would also align Angular Window component with KendoUI Window component modality.

Declined
Last Updated: 30 Jun 2022 08:08 by ADMIN
Created by: Christoph
Comments: 2
Category: Window
Type: Feature Request
0

There are situations where we need to get a list of all windows, e.g. "close all" or "rearrange". While this can easily done manually when working with a single type of window, it's difficult if we have multiple windows using multiple components (we would have to ensure that we register them all in some kind of registry).

Feature request: Add something like a WindowManager that allows us to access all windows. Perhaps their WindowRefs? Perhaps an addition to WindowContainerService?

 

 

 

 

Declined
Last Updated: 16 Jun 2022 08:57 by ADMIN
Created by: Christoph
Comments: 2
Category: Window
Type: Feature Request
0

Requested feature:

A new options "stayInFront" / "alwaysTop" for WindowService > WindowSettings.

Example:

this._windowService.open({
                title: 'Details',
                content: MyDetailsWindowComponent,
                stayInFront: true // < requested feature
            });

Behavior:

  • if true, the window is always "on top", that means if we open another window with "stayInFront=false" it will be behind the window with "stayInFront=true".
  • if multiple windows are open with stayInFront=true they will keep the order in which they were opened

Szenario:

  • We have a grid of records, where a record is a "pipeline configuration" that allows users to edit pipeline steps ("nodes").
  • When the user clicks on a record, we open an "edit pipeline" window.
  • Inside the "edit pipeline window" we have list of "nodes" and the user can click "edit" on each node. This will open a second window containing details to the selected node.

Current problem:

If both windows are open, the user can click on the first (a big one) and this will be moved to front and hide the "node details" window. That makes no sense but we cannot use a dialog because users should be able to select a different node (in the first window).

 

 

 

Unplanned
Last Updated: 01 Dec 2021 14:56 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Window
Type: Feature Request
0

Provide an option to open the Kendo UI for Angular Window, without focusing the wrapper or any elements inside the component.

Completed
Last Updated: 22 Oct 2021 14:39 by ADMIN
Created by: shahar
Comments: 1
Category: Window
Type: Feature Request
13
Add an option to WindowSettings to specify the direction for the window /"right" or "left"/.
Completed
Last Updated: 03 Sep 2021 14:39 by ADMIN
Created by: Endika
Comments: 1
Category: Window
Type: Feature Request
1

Currently the Dialog allows to use a custom component for its content, which can include a custom TitleBar as well, when it is instantiated via a service. Please provide a similar functionality for the Window as well when it is opened via a service. Thank you.

Declined
Last Updated: 13 Jul 2021 06:09 by ADMIN
Created by: Shrinand
Comments: 2
Category: Window
Type: Feature Request
0
Using Kendo Window UI, we want to create multiple windows within a page where they can be free floating or dockable as tabs. Attaching an image of how it would look when it is free floating.
Unplanned
Last Updated: 01 Jul 2020 07:04 by ADMIN
Created by: Tsuyoshi
Comments: 2
Category: Window
Type: Feature Request
5

Please provide an option that allows to constrain the movement of the Window component when dragging similar to the Kendo UI for Vue Window:

https://www.telerik.com/kendo-vue-ui/components/window/constrain-movement/

Unplanned
Last Updated: 04 Sep 2019 04:49 by ADMIN
Created by: Christoph
Comments: 3
Category: Window
Type: Feature Request
10

If we open a window using the WindowService and a custom component for the window content, there seems to be no easy way to disable the "minimize" action.

Example (pseudo code):

this.windowService.open({ title: 'Execution Details', content: MyDetailsWindowComponent, width: 800, height: 600,
minimizable: false, // < suggested feature
maximizable: false // < suggested feature });

 

Szenario: Esp. minify makes no sense in many situations (while we still don't want a "dialog like behavior" with backdrop and modal).