Member Junction
    Preparing search index...

    mj-window — Floating window panel. Replaces <kendo-window>.

    Unlike mj-dialog, this does NOT have a backdrop and does NOT block interaction with the rest of the page. It's a floating panel, similar to Kendo's Window.

    Supports dragging (via titlebar), resizing (via edges/corners), minimize, and maximize.

    <mj-window [Visible]="showWindow" Title="Details" [Width]="600" [Height]="400"
    [Draggable]="true" [Resizable]="true" (Close)="onClose()"
    (StateChange)="onStateChange($event)">
    <p>Window content</p>
    </mj-window>

    Implements

    • OnDestroy
    Index

    Constructors

    Properties

    Close: EventEmitter<void> = ...
    Draggable: boolean = false
    MinHeight: number | null = null
    MinWidth: number | null = null
    Resizable: boolean = false
    Resize: EventEmitter<void> = ...
    StateChange: EventEmitter<"default" | "maximized"> = ...
    Title: string = ''
    WindowId: number = ...

    Accessors

    Methods