Member Junction
    Preparing search index...

    Internal representation of a rendered row

    interface GridRowData {
        cssClasses: string[];
        dirty: boolean;
        editing: boolean;
        entity: Record<string, unknown>;
        index: number;
        key: string;
        selected: boolean;
    }
    Index

    Properties

    cssClasses: string[]

    CSS classes for the row

    dirty: boolean

    Whether the row has unsaved changes

    editing: boolean

    Whether the row is being edited

    entity: Record<string, unknown>

    The entity object

    index: number

    Row index in the data array

    key: string

    Row key (usually ID)

    selected: boolean

    Whether the row is selected