apex-grid
    Preparing search index...

    Interface BaseColumnSortConfiguration<T, K>

    Extended sort configuration for a column.

    interface BaseColumnSortConfiguration<T, K extends Keys<T> = Keys<T>> {
        caseSensitive?: boolean;
        comparer?: SortComparer<T, K>;
    }

    Type Parameters

    Index

    Properties

    caseSensitive?: boolean

    Whether the sort operations will be case sensitive.

    comparer?: SortComparer<T, K>

    Custom comparer function for sort operations for this column.