Using Arco List Selector in Custom Editor
mobile
This example demonstrates the editable capabilities of the table. Click on a cell to enter edit mode. If you want to modify the trigger for entering edit mode, you can set:
/** Edit trigger: double-click event | click event | manually enable editing via API | enter new value. Default is double-click 'doubleclick' */
editCellTrigger?: 'doubleclick' | 'click' | 'api' | 'keydown' | ('doubleclick' | 'click' | 'api' | 'keydown')[];
In the current example, there are four types of editors: input, date, list, and textArea. You can achieve different effects by setting different editors.