rx-datatable API
    Preparing search index...

    Interface DataTableHeadingProps<T, ColName, ItemProps>

    Props passed when rendering a single heading in a DataTable.

    interface DataTableHeadingProps<
        T,
        ColName = string,
        ItemProps = DefaultRowProps,
    > {
        column: DataTableColumn<T, T, ColName, ItemProps>;
        headingRowProps?: ItemProps;
        getColumnSortIndicator(colName: ColName): SortDirection | undefined;
        getColumnWidth(colName: ColName): number | undefined;
        onHeadingClick(colName: ColName): void;
        setColumnWidth(colName: ColName, width: number): void;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Information about the column being rendered

    headingRowProps?: ItemProps