@cdmx/wappler_ag_grid 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dmx-ag-grid.js +3 -4
- package/package.json +1 -1
package/dmx-ag-grid.js
CHANGED
|
@@ -281,11 +281,9 @@ dmx.Component('ag-grid', {
|
|
|
281
281
|
};
|
|
282
282
|
}
|
|
283
283
|
if (gridInstance && transaction) {
|
|
284
|
-
|
|
284
|
+
gridInstance.applyTransaction(transaction);
|
|
285
285
|
// gridInstance.refreshCells();
|
|
286
|
-
}
|
|
287
|
-
return;
|
|
288
|
-
}
|
|
286
|
+
}
|
|
289
287
|
},
|
|
290
288
|
parseFileData: async function (fieldId) {
|
|
291
289
|
const parseCSV = (csvData) => {
|
|
@@ -1323,6 +1321,7 @@ dmx.Component('ag-grid', {
|
|
|
1323
1321
|
suppressPropertyNamesCheck: this.props.suppress_property_names_check,
|
|
1324
1322
|
suppressRowDeselection: this.props.suppress_row_deselection,
|
|
1325
1323
|
columnHoverHighlight: this.props.column_hover_highlight,
|
|
1324
|
+
getRowId: (params) => params.data.id,
|
|
1326
1325
|
onFilterModified: function (params) {
|
|
1327
1326
|
const columnApi = params.columnApi.api;
|
|
1328
1327
|
columnApi.hideOverlay();
|