Skip to content

Commit

Permalink
Merge branch '2023.11' into 2024.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Feb 6, 2024
2 parents 6b712e0 + 3a9ae09 commit a1f102b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tine20/library/ExtJS/src/widgets/grid/GridView.js
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,11 @@ viewConfig: {
}

this.fireEvent('beforerefresh', this);
this.grid.stopEditing(true);
if (this.grid.activeEditor?.record) {
this.grid.activeEditor.record.store = this.grid.store;
} else {
this.grid.stopEditing(true);
}

var result = this.renderBody();
this.mainBody.update(result).setWidth(this.getTotalWidth());
Expand Down

0 comments on commit a1f102b

Please sign in to comment.