Skip to content
On this page

Table

The Table component offers a structured and organized way to display tabular data efficiently. It provides users with clear and concise information presented in rows and columns, facilitating easy comprehension and comparison. With customizable features such as sorting, pagination, and filtering, the Table component enhances data visualization and analysis within Clinux applications.

html
<table [...props] />
typescript
interface TableProps {
  title?: string;
  columns: TableColumn<T>[];
  gridData: T[];
  standardColumns?: boolean;
  actions?: TableColumnAction<T>[];
  order?: OrderBy<T>;
  unhideableColumns?: boolean;
  haveDropdown?: boolean;
  withCheck?: boolean;
  handleCheck?: (row: T, rows: T[]) => void;
  openedActions?: boolean;
}

Examples

Basic

Clinux UI - Released under the MIT License.