Documentation
Cell Editing
Simple Table provides powerful cell editing capabilities, allowing users to modify data directly within the table interface. This creates a more interactive and efficient user experience for data entry and management.
Basic Editing Setup
To enable cell editing in Simple Table, you need to:
- Add the
isEditable: true
property to the columns you want to make editable - Provide an
onCellEdit
handler to manage the data updates
React TSX
1
Cell Editing Properties
isEditable: true
: Makes a column editableonCellEdit
: Callback function to handle cell edits