Changing tree grid toggle icon color when the cell is selected (#20868)

* Changing toggle color when selected

* Using styles to support chevron coloring

* Adding escape to fix hygiene issues

* Fixing hygiene error
This commit is contained in:
Aasim Khan
2022-10-20 13:53:28 -07:00
committed by GitHub
parent d5bb8276ce
commit e6b36cec0f
2 changed files with 21 additions and 3 deletions

View File

@@ -30,8 +30,8 @@ function getDefaultOptions<T>(): Slick.GridOptions<T> {
}
export class Table<T extends Slick.SlickData> extends Widget implements IDisposable {
private styleElement: HTMLStyleElement;
private idPrefix: string;
protected styleElement: HTMLStyleElement;
protected idPrefix: string;
protected _grid: Slick.Grid<T>;
protected _columns: Slick.Column<T>[];