PROBLEM:
In Server Side Data-Tree mode cells in group rows is not editable. I based on this documentation for building the grid - https://www.ag-grid.com/javascript-grid-server-side-model-tree-data .Example:
In this example group rows is not editable, in spite of all columns have 'editable: true' properties
this.columnDefs = [
{ field: "jobTitle", editable: true },
{ field: "employmentType", editable: true }
];
this.defaultColDef = {
width: 240,
resizable: true
};
this.autoGroupColumnDef = {
cellRendererParams: {
innerRenderer: function(params) {
return params.data.employeeName;
}
}
};
this.rowModelType = "serverSide";
this.isServerSideGroup = function(dataItem) {
return dataItem.group;
};
this.getServerSideGroupKey = function(dataItem) {
return dataItem.employeeId;
};
Expectation:
All rows and cells (except Group column) should be editable. Example (usual data-tree WITH OUT server side model):
this.columnDefs = [{ field: "jobTitle", editable: true }, { field: "employmentType", editable: true }];
Pay attention in both cases all columns have 'editable: true'properties and in server side it's not working
Question:
What should i do to have a possibilities to edit all rows (even in group rows)?