VisActor / VTable

VTable is not just a high-performance multidimensional data analysis table, but also a grid artist that creates art between rows and columns.
https://visactor.io/vtable
MIT License
1.57k stars 129 forks source link

[Feature] add parameter to vtable.startEditCell to force the initial editing value #2089

Closed purpose233 closed 1 month ago

purpose233 commented 1 month ago

What problem does this feature solve?

电子表格的交互是在选中态触发单元格编辑时会直接清空原始内容进行编辑,如果双击的话会从当前内容开始编辑,希望通过这个方法实现类似的交互行为: img_v3_02cq_c8224280-63d8-40b9-b77b-5b7340ec920g

What does the proposed API look like?

startEditCell: (col?: number, row?: number, initialValue?: string) => void;