Skip to content

Commit 7205c3b

Browse files
authored
ROU-12056: Adding fix for when SavedByKey is used (#459)
1 parent 9d57cd4 commit 7205c3b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Providers/DataGrid/Wijmo/Grid/FlexGrid.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ namespace Providers.DataGrid.Wijmo.Grid {
6262
this._provider.itemsSource.itemsEdited.remove(row.dataItem);
6363
this._provider.itemsSource.itemsRemoved.remove(row.dataItem);
6464
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);
6568
});
6669
}
6770

0 commit comments

Comments
 (0)