@cdmx/wappler_ag_grid 0.2.6 → 0.2.7
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/README.md +2 -1
- package/dmx-ag-grid.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,4 +15,5 @@ This Custom Module provides the below features:
|
|
|
15
15
|
12. Theme selection
|
|
16
16
|
13. Row Click Event Handling
|
|
17
17
|
14. Options to enable checkboxes for IDs for bulk select Operations
|
|
18
|
-
15. Options to enable Toggle Sliders for status fields
|
|
18
|
+
15. Options to enable Toggle Sliders for status fields
|
|
19
|
+
16. Added Action Buttons feature
|
package/dmx-ag-grid.js
CHANGED
|
@@ -286,7 +286,7 @@ dmx.Component('ag-grid', {
|
|
|
286
286
|
function getValueGetter(key, dataChanges) {
|
|
287
287
|
return function (params) {
|
|
288
288
|
const value = params.data[key];
|
|
289
|
-
const matchingChange = dataChanges.find((change) => change.field === key && change.value === String(
|
|
289
|
+
const matchingChange = dataChanges.find((change) => change.field === key && change.value === String(value));
|
|
290
290
|
if (matchingChange) {
|
|
291
291
|
return matchingChange.new_value;
|
|
292
292
|
}
|