Skip to content

Commit

Permalink
FIX: RowStates were not sent in response to PendingChanges call (#2529)
Browse files Browse the repository at this point in the history
  • Loading branch information
JindrichSusen committed Mar 13, 2024
1 parent ec2f8a2 commit 923b029
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -299,11 +299,11 @@ public void SetModalDialogSize(ArrayList resultList,ExecuteActionProcessData pro
switch (changeType)
{
case DataRowState.Added:
changes.AddRange(sessionStore.GetChanges(tableName, rowEntry.Key, Operation.Create, ignoreKeys, false, hasErrors, hasChanges));
changes.AddRange(sessionStore.GetChanges(tableName, rowEntry.Key, Operation.Create, ignoreKeys, true, hasErrors, hasChanges));
break;

case DataRowState.Modified:
changes.AddRange(sessionStore.GetChanges(tableName, rowEntry.Key, Operation.Update, ignoreKeys, false, hasErrors, hasChanges));
changes.AddRange(sessionStore.GetChanges(tableName, rowEntry.Key, Operation.Update, ignoreKeys, true, hasErrors, hasChanges));
break;

case DataRowState.Deleted:
Expand Down

0 comments on commit 923b029

Please sign in to comment.