Bug/Accessibility fix for 6796 (partial), 6800 and 6745 (#6882)

* fix for https://github.com/microsoft/azuredatastudio/issues/6796 (partial) and https://github.com/microsoft/azuredatastudio/issues/6800 and checkbox regression

* fix for https://github.com/microsoft/azuredatastudio/issues/6745
This commit is contained in:
Udeesha Gautam
2019-08-22 17:31:06 -07:00
committed by GitHub
parent faabcb43f9
commit 1372cbaee1
3 changed files with 17 additions and 15 deletions

View File

@@ -229,9 +229,7 @@ export default class TableComponent extends ComponentBase implements IComponent,
this._table.setSelectedRows(this.selectedRows);
}
for (const col of this._checkboxColumns) {
this.registerCheckboxPlugin(col);
}
Object.keys(this._checkboxColumns).forEach(col => this.registerCheckboxPlugin(this._checkboxColumns[col]));
if (this.ariaRowCount === -1) {
this._table.removeAriaRowCount();