mui-datatable-delight
    Preparing search index...

    Interface ContextValue<DataRowItemType>

    interface ContextValue<DataRowItemType> {
        components: Partial<DataTableComponents>;
        icons: DataTableIcons;
        onAction?: (
            action: TableAction,
            state: Partial<DataTableState<DataRowItemType>>,
        ) => void;
        options: DataTableOptions<DataRowItemType>;
        props: DataTableProps<DataRowItemType>;
        state: DataTableState<DataRowItemType>;
        tableRef: RefObject<HTMLTableElement | null>;
        textLabels: TextLabelsType;
        updateCellValueRef: RefObject<HandleUpdateCellValue | undefined>;
    }

    Type Parameters

    • DataRowItemType
    Index

    Properties

    components: Partial<DataTableComponents>
    onAction?: (
        action: TableAction,
        state: Partial<DataTableState<DataRowItemType>>,
    ) => void
    tableRef: RefObject<HTMLTableElement | null>
    textLabels: TextLabelsType
    updateCellValueRef: RefObject<HandleUpdateCellValue | undefined>