Skip to content

Cell Edit

Since each project has different requirements, the table does not have built-in cell editing functionality. You need to implement it yourself using customCell.

Here's a simple implementation:

  • Double-click cell to edit: Press Enter to save, press Esc or blur to cancel.
  • Row edit mode: Check the edit row to enter row edit mode. No need to press Enter to save in this mode.
loading

Implementation Instructions

Implemented using customCell to customize input.

change Event

You can notify the EditCell change event to the outside through an event bus (CustomEvent / mitt) or other methods.

Released under the MIT License