mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 09:35:39 -05:00
Add setFilter to DeclarativeTableComponent (#14143)
* Add setFilter to DeclarativeTableComponent * fix tests * Update param name
This commit is contained in:
5
src/sql/azdata.proposed.d.ts
vendored
5
src/sql/azdata.proposed.d.ts
vendored
@@ -300,6 +300,11 @@ declare module 'azdata' {
|
||||
|
||||
export interface DeclarativeTableComponent extends Component, DeclarativeTableProperties {
|
||||
onRowSelected: vscode.Event<DeclarativeTableRowSelectedEvent>;
|
||||
/**
|
||||
* Sets the filter currently applied to this table - only rows with index in the given array will be visible. undefined
|
||||
* will clear the filter
|
||||
*/
|
||||
setFilter(rowIndexes: number[] | undefined): void;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user