@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
31 lines (30 loc) • 1.48 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 * as i0 from "@angular/core";
/**
* Represents the filter-menu template for the Gantt column.
*
* Use this directive to customize the filter menu for a column.
* The template context provides:
* - `column`—The current column instance. Use as an alias for a template variable with the `let-column="column"` syntax.
* - `filter`—The filter descriptor.
* - `cellContext`—An object for passing context information to built-in directives.
*
* @example
* ```html
* <kendo-gantt-column>
* <ng-template kendoGanttFilterMenuTemplate let-column let-filter="filter">
* Custom filter for {{ column.field }}
* </ng-template>
* </kendo-gantt-column>
* ```
*/
export declare class FilterMenuTemplateDirective {
templateRef: TemplateRef<any>;
constructor(templateRef: TemplateRef<any>);
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuTemplateDirective, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<FilterMenuTemplateDirective, "[kendoGanttFilterMenuTemplate]", never, {}, {}, never, never, true, never>;
}