<Table />
The Table
component displays a dynamic table for viewing and managing data from a database. It includes features like search, sorting, filtering, and a record modal for inserting or updating records.
This component is closely integrated with the createTableRpc settings, which control both API and table functionality. Key features enabled by these settings include:
Visible Columns: select.columns specifies which columns to display.
Excluded Columns: select.excludeColumns determines which columns to hide.
Searchable Columns: select.searchableColumns adds a search field at the top of the table.
Filterable Columns: select.filterableColumns enables filters at the top of the table.
Sortable Columns: select.sortableColumns allows sorting specific columns.
Pagination: select.pageSize controls the number of records displayed per page.
Last updated