Update edit data for result set streaming changes (#3634)

This commit is contained in:
Matt Irvine
2018-12-18 11:07:26 -08:00
committed by GitHub
parent 50e2251e74
commit 7f950ddb80
2 changed files with 10 additions and 1 deletions

View File

@@ -343,6 +343,9 @@ export class EditDataComponent extends GridParentComponent implements OnInit, On
handleResultSet(self: EditDataComponent, event: any): void {
// Clone the data before altering it to avoid impacting other subscribers
let resultSet = Object.assign({}, event.data);
if (!resultSet.complete) {
return;
}
// Add an extra 'new row'
resultSet.rowCount++;