@umbraco-cms/backoffice
    Preparing search index...
    interface UmbTableItem {
        active?: boolean;
        childrenIndicator?: { href?: string; onOpen?: () => void };
        data: UmbTableItemData[];
        entityType?: string;
        icon?: string | null;
        id: string;
        selectable?: boolean;
    }
    Index

    Properties

    active?: boolean
    childrenIndicator?: { href?: string; onOpen?: () => void }

    When set, the row shows a children indicator. The nested options control what activating it does.

    Type Declaration

    • Optionalhref?: string

      When set, the indicator becomes an anchor linking to this href.

    • OptionalonOpen?: () => void

      When set (and no href is provided), the indicator becomes a button invoking this callback.

    entityType?: string
    icon?: string | null
    id: string
    selectable?: boolean