Coreor / DataTableBoolean
Interactive demo Documentation GitHub
COLUMN TYPE / BOOLEAN

Boolean columns.

Three-state filter with a clear yes/no indicator.

RAW DATA · boolean
01Render

Three-state filter with a clear yes/no indicator.

02Filter

Click Filter and configure this column.

03Edit

Double-click a value to change it.

INTERACTIVE EXAMPLE

Try boolean in context

Filter yes or no, then change a value.

Preparing interactive table…
QUICK START
const columns: GridColumn<Row>[] = [
  {
    key: 'enabled',
    title: 'Enabled',
    kind: 'boolean',
    editable: true,
  },
]
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