Merge branch 'master' into release/1.3

This commit is contained in:
Karl Burtram
2018-12-11 15:10:32 -08:00

View File

@@ -235,7 +235,7 @@ export class GridPanel extends ViewletPanel {
for (let set of resultsToUpdate) { for (let set of resultsToUpdate) {
if (set.complete) { if (set.complete) {
this.addResultSet(resultSet); this.addResultSet(set);
change = true; change = true;
} }
} }
@@ -623,6 +623,7 @@ class GridTable<T> extends Disposable implements IView {
this.table.updateRowCount(); this.table.updateRowCount();
} }
this.rowNumberColumn.updateRowCount(resultSet.rowCount); this.rowNumberColumn.updateRowCount(resultSet.rowCount);
this._onDidChange.fire();
} }
private generateContext(cell?: Slick.Cell): IGridActionContext { private generateContext(cell?: Slick.Cell): IGridActionContext {