Add optional title to tables (#6740)

* Add optional title to tables

* addressing comments
This commit is contained in:
Kim Santiago
2019-08-14 11:12:18 -07:00
committed by GitHub
parent 462b5d1d53
commit 8287e0dda5
5 changed files with 20 additions and 1 deletions

View File

@@ -1133,6 +1133,13 @@ class TableComponentWrapper extends ComponentWrapper implements azdata.TableComp
this.setProperty('forceFitColumns', v);
}
public get title(): string {
return this.properties['title'];
}
public set title(v: string) {
this.setProperty('title', v);
}
public get onRowSelected(): vscode.Event<any> {
let emitter = this._emitterMap.get(ComponentEventType.onSelectedRowChanged);
return emitter && emitter.event;