Member Junction
    Preparing search index...

    Options for opening a dialog programmatically.

    interface MJDialogSettings {
        actions?: MJDialogAction[];
        appendTo?: ViewContainerRef;
        content?: string | Type<unknown>;
        height?: number;
        minWidth?: number;
        title?: string;
        width?: number;
    }
    Index

    Properties

    actions?: MJDialogAction[]

    Action buttons shown in the footer

    appendTo?: ViewContainerRef

    ViewContainerRef to attach the dialog to (for proper DI context)

    content?: string | Type<unknown>

    Content: either a string message or a Component class

    height?: number

    Dialog height in pixels

    minWidth?: number

    Dialog minimum width in pixels

    title?: string

    Dialog title

    width?: number

    Dialog width in pixels