mwg API
    Preparing search index...

    Interface DataTableOptions<T>

    interface DataTableOptions<T> {
        columns: readonly TableColumn<T>[];
        disabled?: (row: T) => boolean;
        pageSize?: number;
        rows?: readonly T[];
    }

    Type Parameters

    • T
    Index
    columns: readonly TableColumn<T>[]
    disabled?: (row: T) => boolean

    rows the highlight skips, the way ListView skips a disabled item

    pageSize?: number

    rows per page; 0 or omitted means one page, no paging

    rows?: readonly T[]