We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112431d commit 6b157d0Copy full SHA for 6b157d0
CHANGE-LOG.md
@@ -13,6 +13,7 @@ V2.10.2
13
14
- 修复虚拟滚动表格展开表格导致浏览器崩溃的问题 #414
15
- 修复固定列效果在横向滚动时不生效的问题
16
+- 修复单元格整行编辑开启后,当前编辑行的焦点无法改变的问题
17
18
V2.10.1
19
packages/ve-table/src/index.jsx
@@ -1417,7 +1417,12 @@ export default {
1417
editingFocusCell &&
1418
editingFocusCell.rowKey === clickRowKey
1419
) {
1420
- //
+ // set editing focus cell
1421
+ this.setEditingFocusCell({
1422
+ rowKey: clickRowKey,
1423
+ colKey: clickColKey,
1424
+ });
1425
+
1426
return false;
1427
} else {
1428
isStopEditing = true;
0 commit comments