angular-wrapper-kendo-ui-app
Version:
A sample application to use and test the TreeList component defined in the *angular-wrapper-kendo-ui* library.
25 lines (24 loc) • 980 B
TypeScript
import { NgZone, ElementRef, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
export declare class TreeListComponent implements OnInit, AfterViewInit, OnDestroy {
private zone;
private elementRef;
options: kendo.ui.TreeListOptions;
treelistEl: ElementRef;
private _treelist;
constructor(zone: NgZone, elementRef: ElementRef);
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
get dataSource(): any;
get content(): JQuery;
get thead(): JQuery;
get tbody(): JQuery;
addRow(parentRow?: string | Element | JQuery): void;
editRow(row: string | JQuery): void;
removeRow(row: string | Element | JQuery): void;
expand(row: string | Element | JQuery): void;
select(row: string | Element | JQuery): JQuery;
itemFor(model: kendo.data.TreeListModel | Object): JQuery;
dataItem(row: string | Element | JQuery): kendo.data.TreeListModel;
clearSelection(): void;
}