UNPKG

@progress/kendo-angular-dropdowns

Version:

A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree

17 lines (16 loc) 1.12 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ export interface MultiSelectTreeCheckableSettings { /** * When `true`, child nodes are checked automatically. * * > When you enable this property, use it with [`loadOnDemand`]({% slug api_dropdowns_multiselecttreecomponent %}#toc-loadondemand) set to 'false' ([see example]({% slug checkablesettings_multiselecttree %})). Otherwise, after expanding a checked node and loading its inner items, the value selected in the widget and the checked items in the drop-down will not be in sync. This scenario is not supported. */ checkChildren?: boolean; /** * Specifies if on clicking the tree node, the item will be checked or unchecked, or if selection will be performed only on checkbox click. */ checkOnClick?: boolean; }