mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
declarative table fix (#14844)
* declarative table fixes * reset selectedRow * use eventHelper
This commit is contained in:
@@ -1563,12 +1563,12 @@ class DeclarativeTableWrapper extends ComponentWrapper implements azdata.Declara
|
||||
return this._proxy.$setProperties(this._handle, this._id, this.getPropertiesForMainThread());
|
||||
}
|
||||
|
||||
public get selectEffect(): boolean | undefined {
|
||||
return this.properties['selectEffect'];
|
||||
public get enableRowSelection(): boolean | undefined {
|
||||
return this.properties['enableRowSelection'];
|
||||
}
|
||||
|
||||
public set selectEffect(v: boolean | undefined) {
|
||||
this.setProperty('selectEffect', v);
|
||||
public set enableRowSelection(v: boolean | undefined) {
|
||||
this.setProperty('enableRowSelection', v);
|
||||
}
|
||||
|
||||
public setFilter(rowIndexes: number[]): void {
|
||||
|
||||
Reference in New Issue
Block a user