@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
37 lines (36 loc) • 1.51 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 { ContextService } from '../../../common/provider.service';
import { IdService } from '../../../common/id.service';
import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
import * as i0 from "@angular/core";
/**
* Represents the toolbar tool for showing a select-all `kendoGridSelectAllCheckbox` checkbox.
* Use this component inside a ToolbarComponent in the Grid.
*
* @example
* ```html
* <kendo-grid>
* <kendo-toolbar>
* <kendo-grid-select-all-tool text="Select All"></kendo-grid-select-all-tool>
* </kendo-toolbar>
* </kendo-grid>
* ```
*/
export declare class SelectAllToolbarToolComponent extends ToolBarToolComponent {
private idService;
private ctx;
constructor(idService: IdService, ctx: ContextService);
/**
* @hidden
*/
selectAllCheckboxId(): string;
/**
* @hidden
*/
get selectAllCheckboxLabel(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<SelectAllToolbarToolComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SelectAllToolbarToolComponent, "kendo-grid-select-all-tool", never, {}, {}, never, never, true, never>;
}