We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d57cd4 commit 7205c3bCopy full SHA for 7205c3b
src/Providers/DataGrid/Wijmo/Grid/FlexGrid.ts
@@ -62,6 +62,9 @@ namespace Providers.DataGrid.Wijmo.Grid {
62
this._provider.itemsSource.itemsEdited.remove(row.dataItem);
63
this._provider.itemsSource.itemsRemoved.remove(row.dataItem);
64
this._provider.itemsSource.itemsAdded.remove(row.dataItem);
65
+ // RUG: Workaround provided by Mescius, July 2025
66
+ // Fixes the issue described in ROU-12063.
67
+ this._provider.itemsSource._orgVals?.delete(row.dataItem);
68
});
69
}
70
0 commit comments