x4js - v2.2.49
    Preparing search index...

    Interface DialogProps

    Base properties for all components.

    interface DialogProps {
        attrs?: Record<string, string | number | boolean>;
        autoClose?: string | boolean;
        btnclick?: EventCallback<EvBtnClick>;
        buttons: BtnGroupItem[];
        closable?: string | boolean;
        cls?: string;
        content?: ComponentContent;
        disabled?: boolean;
        dom_events?: GlobalDOMEvents;
        existingDOM?: HTMLElement;
        flex?: number | boolean;
        form?: Form;
        height?: string | number;
        hidden?: boolean;
        icon?: string;
        id?: string;
        modal?: boolean;
        movable?: boolean;
        ns?: string;
        ref?: RefType<any>;
        sizable?: boolean;
        style?: Partial<CSSStyleDeclaration>;
        tag?: string;
        title: string;
        tooltip?: string;
        width?: string | number;
    }

    Hierarchy (View Summary)

    Index
    attrs?: Record<string, string | number | boolean>

    HTML attributes.

    autoClose?: string | boolean
    buttons: BtnGroupItem[]
    closable?: string | boolean
    cls?: string

    Additional CSS classes.

    Child content (components, strings, or HTML).

    disabled?: boolean

    Component is initialy disabled.

    dom_events?: GlobalDOMEvents

    DOM event listeners.

    existingDOM?: HTMLElement

    Existing DOM element to wrap.

    flex?: number | boolean

    Enables flex layout (boolean) or sets flex-grow (number).

    form?: Form
    height?: string | number

    Height (px or string like "50%").

    hidden?: boolean

    Component is initialy hidden.

    icon?: string
    id?: string

    Element ID.

    modal?: boolean
    movable?: boolean
    ns?: string

    Namespace for SVG/MathML elements.

    ref?: RefType<any>

    Reference to the component instance.

    sizable?: boolean
    style?: Partial<CSSStyleDeclaration>

    Inline CSS styles.

    tag?: string

    HTML tag name (default: "div").

    title: string
    tooltip?: string

    Tooltip text.

    width?: string | number

    Width (px or string like "50%" or "3em").