We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9b863fc + 6ed0827 commit e4be254Copy full SHA for e4be254
1 file changed
src/app/grid/grid-editing-excel-style/grid-editing-excel-style.component.ts
@@ -38,8 +38,8 @@ export class GridExcelStyleEditingComponent implements OnInit {
38
39
const columnName = grid.getColumnByVisibleIndex(activeElem.column).field;
40
const cell = grid.getCellByColumn(activeElem.row, columnName);
41
- if (cell && !grid.crudService.cellInEditMode) {
42
- grid.crudService.enterEditMode(cell);
+ if (cell && !cell.editMode) {
+ cell.editMode = true;
43
cell.editValue = event.key;
44
this.shouldAppendValue = true;
45
} else if (cell && cell.editMode && this.shouldAppendValue) {
0 commit comments