I have a edit button on each row and I have set
defaultColDef: {
editable: false,
}
in the grid options
I want the row to be in edit mode when I click on edit button. My edit button works fine if I set
defaultColDef: {
editable: true,
}
But it enables keypress edit which I don't want to.
How should I dynamically edit that particular row without setting the editable to true in my defaultColdef
?
On click of edit, I have enabled the this.gridOptions.defaultColDef.editable = true
, but no luck!