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

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