Hi,
It would be a nice feature for the WindowService and DialogService settings to have a themeColor property.
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).
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
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.
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
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.
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.
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?
Requested feature:
A new options "stayInFront" / "alwaysTop" for WindowService > WindowSettings.
Example:
this._windowService.open({
title: 'Details',
content: MyDetailsWindowComponent,
stayInFront: true // < requested feature
});
Behavior:
Szenario:
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).
Provide an option to open the Kendo UI for Angular Window, without focusing the wrapper or any elements inside the component.
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.
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/