Coreor / DataTableSelect
Interactive demo Documentation GitHub
COLUMN TYPE / SELECT

Select columns.

Predefined values with multi-select filtering.

RAW DATA · string
01Render

Predefined values with multi-select filtering.

02Filter

Click Filter and configure this column.

03Edit

Double-click a value to change it.

INTERACTIVE EXAMPLE

Try select in context

Filter by two priorities, then edit a cell.

Preparing interactive table…
QUICK START
const columns: GridColumn<Row>[] = [
  {
    key: 'priority',
    title: 'Priority',
    kind: 'select',
    editable: true,
    options: ["Low","Medium","High","Urgent"],
  },
]
ABOUT THE DATA

Raw values stay raw.

The renderer changes how a cell looks. Sorting, filtering, editing and CSV export work with the underlying value, so integrations can use stable types.

Explore feature labs