You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed Issues and Improvements
ROU-12056 / RPM-5959 - Fixed an issue where the ClearGridChanges function was inadvertently removing records from the grid.
This occurred when a row(s) was added and then removed. The cause was related to the undo of the removed row not being properly executed, causing the follow-up to undo of the add row to remove rows that already existed in the grid.
ROU-12063 / RPM-5970 - Fixed an issue where the Grid incorrectly indicated that there were changes, even when no changes were present.
This occurred when using the MarkChangesAsSavedByKey client action. Unlike MarkChangesAsSaved (which invokes the provider’s clearAllChanges), MarkChangesAsSavedByKey was not correctly clearing the changes in the provider.
This meant that even after saving, the Grid retained information about changes that were already saved, leading the Grid to indicate that there were changes.
ROU-12064 / RPM-5976 - Fixed an issue that caused changes not to be correctly tracked after copying an edited cell using the ContextMenu component.