Hi,
i'm trying to use the WindowService customizing the messages (tooltip) of the action buttons.
Seems that the custom labels are not shown and i have a console error
preview-2f5baf5affd53e419d85b.js:1 ERROR TypeError: Cannot set property 'closeTitle' of undefined
Here an example:
https://stackblitz.com/edit/angular-8z7vou
any suggestions?
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 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/
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).
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?
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.
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).