Checkbox cell type
Create interactive elements that can be checked or unchecked, by using the checkbox cell type.
Overview
Data in these cells will be rendered as a checkbox and you can easily change it by checking/unchecking the checkbox.
To check the box, use the mouse or press Space or Enter.
To uncheck the box, use the mouse or press Space, Enter, Delete or Backspace.
You can change the state of multiple cells at once by selecting the cells you want to change and pressing Space.
Checkbox true/false values
This is the default usage scenario where column data has a true or false value, and we only want to display checkboxes.
import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Year of manufacture', 'Available']} height="auto" columns={[ { data: 'car', }, { data: 'year', type: 'numeric', }, { data: 'available', type: 'checkbox', }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Year of manufacture', 'Available']} height="auto" columns={[ { data: 'car', }, { data: 'year', type: 'numeric', }, { data: 'available', type: 'checkbox', }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;Checkbox template
If you want to use values other than true and false, you have to provide this information using checkedTemplate and uncheckedTemplate. Handsontable will then update your data using the appropriate template.
import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Year of manufacture', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'year', type: 'numeric', }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Year of manufacture', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'year', type: 'numeric', }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;Checkbox labels
To add a label to the checkbox, use the label option. You can declare where the label will be injected with this option - either before or after the checkbox element. You can also declare from which data source the label text will be updated.
import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Accepted', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'available', type: 'checkbox', label: { position: 'after', property: 'car', // Read value from row object }, }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', label: { position: 'before', value: 'In black? ', }, }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, available: true, comesInBlack: 'yes', }, { car: 'Citroen C4 Coupe', year: 2018, available: false, comesInBlack: 'yes', }, { car: 'Audi A4 Avant', year: 2019, available: true, comesInBlack: 'no', }, { car: 'Opel Astra', year: 2020, available: false, comesInBlack: 'yes', }, { car: 'BMW 320i Coupe', year: 2021, available: false, comesInBlack: 'no', }, ]} colHeaders={['Car model', 'Accepted', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'available', type: 'checkbox', label: { position: 'after', property: 'car', // Read value from row object }, }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', label: { position: 'before', value: 'In black? ', }, }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;Label value as a function
The value property of the label option can also be a function. The function receives four arguments: row, column, prop, and value, where value is the current cell value. This lets you generate label text dynamically based on the cell’s state.
import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, comesInBlack: 'yes' }, { car: 'Citroen C4 Coupe', year: 2018, comesInBlack: 'yes' }, { car: 'Audi A4 Avant', year: 2019, comesInBlack: 'no' }, { car: 'Opel Astra', year: 2020, comesInBlack: 'yes' }, { car: 'BMW 320i Coupe', year: 2021, comesInBlack: 'no' }, ]} colHeaders={['Car model', 'Year', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'year', }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', label: { position: 'after', value(row, column, prop, value) { if (value === 'yes') { return 'In black'; } else { return 'Not in black'; } }, }, }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;import { HotTable } from '@handsontable/react-wrapper';import { registerAllModules } from 'handsontable/registry';
// register Handsontable's modulesregisterAllModules();
const ExampleComponent = () => { return ( <HotTable data={[ { car: 'Mercedes A 160', year: 2017, comesInBlack: 'yes' }, { car: 'Citroen C4 Coupe', year: 2018, comesInBlack: 'yes' }, { car: 'Audi A4 Avant', year: 2019, comesInBlack: 'no' }, { car: 'Opel Astra', year: 2020, comesInBlack: 'yes' }, { car: 'BMW 320i Coupe', year: 2021, comesInBlack: 'no' }, ]} colHeaders={['Car model', 'Year', 'Comes in black']} height="auto" columns={[ { data: 'car', }, { data: 'year', }, { data: 'comesInBlack', type: 'checkbox', checkedTemplate: 'yes', uncheckedTemplate: 'no', label: { position: 'after', value(row: number, column: number, prop: string | number, value: string) { if (value === 'yes') { return 'In black'; } else { return 'Not in black'; } }, }, }, ]} autoWrapRow={true} autoWrapCol={true} licenseKey="non-commercial-and-evaluation" /> );};
export default ExampleComponent;Related keyboard shortcuts
| Windows | macOS | Action | Excel | Sheets |
|---|---|---|---|---|
| Space | Space | Check or uncheck the checkbox | ✗ | ✓ |
| Enter | Enter | Check or uncheck the checkbox | ✗ | ✓ |
| Delete | Delete | Uncheck the checkbox | ✗ | ✓ |
| Backspace | Backspace | Uncheck the checkbox | ✗ | ✓ |
Related articles
Related guides
Configuration options
Core methods
Hooks