Member Junction
    Preparing search index...

    Extended sort state with multi-sort index Extends the base SortState from types.ts with an index for multi-sort ordering

    interface DataGridSortState {
        direction: "asc" | "desc";
        field: string;
        index: number;
    }
    Index

    Properties

    Properties

    direction: "asc" | "desc"

    Sort direction

    field: string

    Field name being sorted

    index: number

    Index for multi-sort ordering