📄️ DEPRECATED - Child Table
A child table component is a feature within a table or data display structure that allows the representation of related data in a hierarchical or nested format. It's often used in scenarios where one set of data is directly associated with or linked to another set, creating a parent-child relationship.
📄️ DataList
A DataList displays a collection of records as a list of repeating sub-forms. Where a DataTable shows data in rows and columns, a DataList gives you complete control over how each item looks by rendering a fully configured form for every record. You can use it to build card-style layouts, custom list items, or any repeating pattern that a grid cannot express.
📄️ DataTable Context
The DataTable Context is a container component that handles fetching, filtering, sorting, and paging of data on a form. You configure it with a data source — an entity, a custom API endpoint, or data already on the form — and child components like DataTable and DataList read from it. The context does all the data work so display components can focus on rendering records.
📄️ DataTable
A DataTable displays records from a data source in rows and columns. You configure which columns to show, how each column looks and behaves, and whether users can add, edit, or delete records directly inside the table. A DataTable reads its data from a parent DataTableContext component, which handles fetching, filtering, sorting, and paging so the DataTable only needs to focus on display.
📄️ Quick Search
The Quick Search component is a user interface element designed to enable fast and efficient searching within a dataset, often used in applications displaying large amounts of information. It provides a quick and simple way for users to find specific data within a table, list, or any structured display. This component should be used within a DataTable Context Component.
📄️ Table Filter
The Table Filter component is a customizable filter button designed to help users quickly refine table data. It supports diverse configurations including layout, icons, tooltips, and custom action triggers—perfect for dynamic table filtering on dashboards or forms.
📄️ Table Pager
The Table Pager component is a user interface element used in applications that display large sets of data in a tabular or paginated format. Its primary function is to break down the dataset into manageable sections or pages, enabling users to navigate through the data easily. This component should be used within a DataTable Context Component.
📄️ Table View Selector
The Table View Selector component is a user interface component used for dealing with tabular or list-based data. It allows users to switch between different predefined views or filters of the data presented in a table format. This component provides a list of configurable query builders that can be used to configure the different predefined filters and views. This component should be used within a DataTable Context Component.