Skip to content

Commit 58afcf8

Browse files
committed
Edit Grid: Fixed 'Save' button click not firing outer calculations
1 parent 0f48b1e commit 58afcf8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [Unreleased]
8+
### Fixed
9+
- Edit Grid not firing outer calculations on 'Save' button click
10+
711
## 3.1.3
812
### Fixed
913
- Problem with the PDFBuilder component where it would remove listeners for the drag-and-drop components.

src/components/editgrid/EditGrid.js

+1
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ export default class EditGridComponent extends NestedComponent {
338338
this.editRows[rowIndex].dirty = false;
339339
this.editRows[rowIndex].isOpen = false;
340340
this.updateValue();
341+
this.triggerChange();
341342
this.buildTable();
342343
this.checkValidity(this.data, true);
343344
}

0 commit comments

Comments
 (0)