← Back to Components

DataTable

data

Data table with sorting, filtering, pagination and row selection

Parameters

columnsdatapageSizesortablefilterableselectablemultiSelectstickyHeader

Preview

Loading preview...

Example

{
  "version": "1.0",
  "state": {
    "users": {
      "type": "list",
      "initial": [
        { "id": 1, "name": "Alice", "email": "alice@example.com", "role": "Admin" },
        { "id": 2, "name": "Bob", "email": "bob@example.com", "role": "User" },
        { "id": 3, "name": "Carol", "email": "carol@example.com", "role": "Editor" }
      ]
    }
  },
  "actions": [],
  "view": {
    "kind": "component",
    "name": "DataTable",
    "props": {
      "columns": { "expr": "lit", "value": [{ "key": "name", "title": "Name" }, { "key": "email", "title": "Email" }, { "key": "role", "title": "Role" }] },
      "data": { "expr": "state", "name": "users" }
    }
  }
}

Installation

Copy component files from:

node_modules/@constela/ui/components/data-table/