allow extension to select row in declarative table (#15703)

* allow extension to select row in declarative table

* pr comments

* use proper type for the event.

* update event arg
This commit is contained in:
Alan Ren
2021-06-15 15:41:37 -07:00
committed by GitHub
parent 24cd2106a1
commit a8f3d97f59
3 changed files with 45 additions and 9 deletions

View File

@@ -380,6 +380,11 @@ declare module 'azdata' {
* Gets a boolean value determines whether the row selection is enabled. Default value is false.
*/
enableRowSelection?: boolean;
/**
* Gets or sets the selected row number of the table. -1 means to no selected row.
*/
selectedRow?: number;
}
export interface DeclarativeTableCellValue {