rx-datatable API
    Preparing search index...

    Type Alias DataTableProps<T, K, ColName, ItemProps>

    DataTableProps: DataTableCoreProps<T, K, ColName, ItemProps> & Styles & {
        outerProps?: React.DetailedHTMLProps<
            React.HTMLAttributes<HTMLDivElement>,
            HTMLDivElement,
        >;
        tableProps?: Styles & React.ComponentProps<"table">;
        theme?: TableTheme | string | nully;
    }

    Properties of a DataTable. The only required properties are columns and list (or tree), which are defined in the base interfaces DataTableCoreProps and TreeListMainProps. If you are using a tree view, it is recommended to also provide getKey (from the base interface ListCoreProps) to identify rows to React.

    Type Parameters

    Type Declaration

    • OptionalouterProps?: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>

      Attributes to add to the outer <div> element that contains the <table>

    • OptionaltableProps?: Styles & React.ComponentProps<"table">

      Styles on the <table> element (the style and className on DataTableProps itelf are applied to an outer scrollable <div> that contains the <table>.)

    • Optionaltheme?: TableTheme | string | nully

      Theme for this table; overrides the ambient TableConfig theme.