remove table setActive (#10256)

* remove setActive method

* another place
This commit is contained in:
Alan Ren
2020-05-05 13:21:26 -07:00
committed by GitHub
parent 921e546fd7
commit 0fd3b25ccd
3 changed files with 3 additions and 7 deletions

View File

@@ -230,10 +230,6 @@ export class Table<T extends Slick.SlickData> extends Widget implements IDisposa
this._grid.setActiveCell(row, cell);
}
setActive(): void {
this._grid.setActiveCell(0, 1);
}
get activeCell(): Slick.Cell | null {
return this._grid.getActiveCell();
}