UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

51 lines (49 loc) 2.2 kB
/** * DevExtreme (ui/hierarchical_collection/ui.hierarchical_collection_widget.d.ts) * Version: 21.2.3 * Build date: Thu Oct 28 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import CollectionWidget, { CollectionWidgetOptions, } from '../collection/ui.collection_widget.base'; /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}. */ export interface HierarchicalCollectionWidgetOptions<TComponent> extends CollectionWidgetOptions<TComponent> { /** * Specifies the name of the data source item field whose value defines whether or not the corresponding UI component item is disabled. */ disabledExpr?: string | Function; /** * Specifies the data field whose values should be displayed. */ displayExpr?: string | ((item: any) => string); /** * Specifies whether the UI component can be focused using keyboard navigation. */ focusStateEnabled?: boolean; /** * Specifies whether the UI component changes its state when a user pauses on it. */ hoverStateEnabled?: boolean; /** * Specifies which data field contains nested items. */ itemsExpr?: string | Function; /** * Specifies which data field provides keys for TreeView items. */ keyExpr?: string | Function; /** * Specifies the name of the data source item field whose value defines whether or not the corresponding UI component items is selected. */ selectedExpr?: string | Function; } /** * * @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}. */ export default class HierarchicalCollectionWidget<TProperties> extends CollectionWidget<TProperties> { }