@progress/kendo-angular-dropdowns
Version:
A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree
39 lines (38 loc) • 1.76 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { OnChanges, SimpleChanges } from '@angular/core';
import { DataBoundComponent, FlatDataBindingDirective } from '@progress/kendo-angular-treeview';
import * as i0 from "@angular/core";
/**
* Retrieves child nodes when the provided data is flat for the MultiSelectTree.
*
* @example
* ```html
* <kendo-multiselecttree kendoMultiSelectTreeFlatBinding [nodes]="data" [valueField]="'id'"></kendo-multiselecttree>
* ```
*
* @remarks
* Applied to: {@link MultiSelectTreeComponent}.
*/
export declare class MultiSelectTreeFlatBindingDirective extends FlatDataBindingDirective implements OnChanges {
private multiSelectTree;
/**
* Sets the nodes to display in the MultiSelectTree.
*/
set nodes(nodes: any[]);
get nodes(): any[];
/**
* Sets the unique field that identifies a node.
*/
idField: string;
/**
* @hidden
*/
set filter(term: string);
constructor(multiSelectTree: DataBoundComponent);
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectTreeFlatBindingDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeFlatBindingDirective, "[kendoMultiSelectTreeFlatBinding]", never, { "nodes": { "alias": "kendoMultiSelectTreeFlatBinding"; "required": false; }; "idField": { "alias": "valueField"; "required": false; }; }, {}, never, never, true, never>;
}