mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
Fixing Slick Grid accessibility bugs. (#20514)
* some alignment fixes * Redesigning slickgrid checkbox plugin * Reverting original plugin to main state * Fixing css * Reverting file * Removing extra whitespace * Adding title * Removing older plugin * vbumping slick grid * Pushing other vbumps * Adding more targeted css selectors
This commit is contained in:
@@ -277,7 +277,7 @@ export default class TableComponent extends ComponentBase<azdata.TableComponentP
|
||||
|
||||
this._table = new Table<Slick.SlickData>(this._inputContainer.nativeElement, { dataProvider: this._tableData, columns: this._tableColumns }, options);
|
||||
this._table.setData(this._tableData);
|
||||
this._table.setSelectionModel(new RowSelectionModel({ selectActiveRow: true }));
|
||||
this._table.setSelectionModel(new RowSelectionModel({ selectActiveRow: false }));
|
||||
|
||||
this._register(this._table);
|
||||
this._register(attachTableStyler(this._table, this.themeService));
|
||||
|
||||
Reference in New Issue
Block a user