I'm currently working on AG Grid for angular 5. I have an issue with cell editing function. With my click event, I'm enabling editing mode of selected rows column programmatically using the following code
selectedNods.forEach(element => {
if (element.node.selected)
element.node.gridApi.startEditingCell({
rowIndex: element.node.rowIndex,
colKey: "account"
});
});
This works fine. But when I enter into a cell for the purpose of editing,
all other cells back to normal mode from editing mode.
I want to keep all selected rows specified cells should be editable, even when I'm editing a cell.
Please help me.