focus before activate editing

This commit is contained in:
Rushabh Mehta 2018-02-13 17:25:37 +05:30
parent e1e4ca5eee
commit 507b173243
3 changed files with 4 additions and 1 deletions

View File

@ -2538,6 +2538,8 @@ var CellManager = function () {
}, {
key: 'activateEditing',
value: function activateEditing($cell) {
this.focusCell($cell);
var _$$data6 = _dom2.default.data($cell),
rowIndex = _$$data6.rowIndex,
colIndex = _$$data6.colIndex;

File diff suppressed because one or more lines are too long

View File

@ -326,6 +326,7 @@ export default class CellManager {
}
activateEditing($cell) {
this.focusCell($cell);
const { rowIndex, colIndex } = $.data($cell);
const col = this.columnmanager.getColumn(colIndex);