@trudb/tru-common-lib 0.2.84 → 0.2.86
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.
|
@@ -7076,7 +7076,7 @@ class TruDataGrid {
|
|
|
7076
7076
|
rowCount = 'Rows: 0';
|
|
7077
7077
|
selectedRowCount = 'Selected: 0';
|
|
7078
7078
|
gridOptions = {
|
|
7079
|
-
getRowId: (params) => { return params.data.$entity.Ref; },
|
|
7079
|
+
getRowId: (params) => { return params.data.$entity.Ref.toString(); },
|
|
7080
7080
|
animateRows: false,
|
|
7081
7081
|
rowSelection: 'multiple',
|
|
7082
7082
|
rowStyle: { background: 'white' },
|
|
@@ -7111,10 +7111,10 @@ class TruDataGrid {
|
|
|
7111
7111
|
this.validationDialog.destroy();
|
|
7112
7112
|
},
|
|
7113
7113
|
onCellEditingStopped: (params) => {
|
|
7114
|
-
|
|
7115
|
-
|
|
7116
|
-
|
|
7117
|
-
|
|
7114
|
+
params.api.refreshCells({
|
|
7115
|
+
force: true,
|
|
7116
|
+
rowNodes: [params.node]
|
|
7117
|
+
});
|
|
7118
7118
|
},
|
|
7119
7119
|
onCellValueChanged: (params) => {
|
|
7120
7120
|
},
|