@progress/kendo-angular-treelist
Version:
Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.
34 lines (33 loc) • 1.81 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 { TemplateRef } from '@angular/core';
import { ColumnBase } from './column-base';
import { CellTemplateDirective } from '../rendering/cell-template.directive';
import * as i0 from "@angular/core";
/**
* Represents the checkbox for selecting rows in the TreeList. [See example](slug:treelist_row_selection#toc-select-all-checkbox).
*/
export declare class CheckboxColumnComponent extends ColumnBase {
parent?: ColumnBase;
/**
* Determines whether a select-all checkbox will be displayed in the header.
*/
showSelectAll: boolean;
/**
* Determines whether checkbox click should select / unselect all children
*/
checkChildren: boolean;
/**
* Defines whether the expanded indicator should be rendered in the column.
* @default false
*/
expandable: boolean;
readonly isCheckboxColumn: boolean;
template: CellTemplateDirective;
constructor(parent?: ColumnBase);
get templateRef(): TemplateRef<any>;
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxColumnComponent, [{ optional: true; host: true; skipSelf: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxColumnComponent, "kendo-treelist-checkbox-column", never, { "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "checkChildren": { "alias": "checkChildren"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; }, {}, ["template"], never, true, never>;
}