Member Junction
    Preparing search index...

    An interactive HTML widget — arbitrary HTML (scripts included) rendered inside a STRICTLY SANDBOXED iframe (sandbox="allow-scripts" only, opaque origin — see the board component for the full security rationale). Dragged/selected by its card chrome — header bar, border ring and lazy placeholder — while pointer events inside the sandboxed frame stay with the widget, so iframe interactivity and board interactions coexist.

    interface WhiteboardHtmlItem {
        Author: WhiteboardAuthor;
        H: number;
        Html: string;
        ID: string;
        Kind: "html";
        Title?: string;
        W: number;
        X: number;
        Y: number;
        Z: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Who placed the item. Drives the ownership chrome (chips / violet vs slate-amber).

    H: number
    Html: string

    The widget's full HTML source (becomes the sandboxed iframe's srcdoc).

    ID: string

    Stable item id (e.g. sticky-3) — referenced by connectors, deltas and agent tools.

    Kind: "html"
    Title?: string

    Optional title shown on the widget's header bar.

    W: number
    X: number
    Y: number
    Z: number

    Render order (higher renders on top). Assigned by the engine.