Kendo UI Angular window - prevent maximize

1.5k Views Asked by At

I'm using Kendo UI Window component for Angular and want to prevent users from maximizing the window. Telerik Kendo UI Window component

I was able to remove the Maximize-button, but a Dobuleclick on titlebar still maximizes the window (new class is set called 'k-window-maximized').

Anyone has solution for this? I tried with an event handler (dblclick) but it didn't work.

*** Solution ****

This worked for me: set [resizable] to false

<kendo-window (close)="onClose()" [keepContent]="true"
  [resizable]="false" [draggable]="false" [width]="windowConfig?.width">
0

There are 0 best solutions below