IAttributeFilterElementsSelectProps
Home > @gooddata/sdk-ui-filters > IAttributeFilterElementsSelectProps
IAttributeFilterElementsSelectProps interface
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
It represents a list of Attribute filter elements. It allows users to search elements and display a number of elements that respect current search criteria. It manipulates with current selection. It allows paging. It displays the current selection status.
Signature:
export interface IAttributeFilterElementsSelectProps
Properties
| Property | Type | Description |
|---|---|---|
| error? | GoodDataSdkError | (BETA) (Optional) Error |
| isFilteredByParentFilters | boolean | (BETA) Indicate that elements are filtered by parent filters |
| isInverted | boolean | (BETA) Indicate if current filter is inverted or not see: IPositiveAttributeFilter or INegativeAttributeFilter |
| isLoading | boolean | (BETA) Indicator that AttributeFilter component is in loading state |
| isLoadingNextPage | boolean | (BETA) Indicator that next page of elements is loading or not |
| items | IAttributeElement[] | (BETA) List of Attribute filter elements that are loaded and respect current search criteria. |
| nextPageSize | number | (BETA) Size of next page of elements |
| onLoadNextPage | () => void | (BETA) Callback to obtain next page of AttributeFilter elements |
| onSearch | (searchString: string) => void | (BETA) Search callback |
| onSelect | (selectedItems: IAttributeElement[], isInverted: boolean) => void | (BETA) Change selection callback |
| parentFilterTitles | string[] | (BETA) List of parent filter titles that filter current elements |
| searchString | string | (BETA) Current search string |
| selectedItems | IAttributeElement[] | (BETA) List of current selected items. |
| totalItemsCount | number | (BETA) Number of all elements that respect current search criteria. |
| totalItemsCountWithCurrentSettings | number | (BETA) Number of all elements that respect current search criteria. |