Engine API Reference - v2.23.0-beta.7
    Preparing search index...

    Interface ListCell

    interface ListCell {
        checked?: boolean;
        cls?: string;
        disabled?: boolean;
        target?: any;
        text: string;
        title?: string;
        toggle?: boolean;
    }
    Index
    checked?: boolean

    The state of a checkbox cell.

    cls?: string

    Extra classes, e.g. 'pci-cell-name'.

    disabled?: boolean

    Whether a checkbox cell is disabled.

    target?: any

    A link target. Clicking the cell calls ListView#onLink with it instead of selecting the row.

    text: string

    The text.

    title?: string

    A tooltip.

    toggle?: boolean

    Render the cell as a checkbox instead of text. Changing it calls ListView#onToggle with the row's item and the new state, without selecting the row.