@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
43 lines (42 loc) • 2.22 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 { FilterOperatorBase } from './filter-operator.base';
import * as i0 from "@angular/core";
/**
* Represents the `DoesNotContain` (**Does not contain**) filter operator. [See example](slug:filtering_grid#toc-using-the-built-in-directive).
* Use this operator to filter values that do not contain the specified text.
* For more information and examples, see the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
*
* @example
* ```html Filter Cell
* <kendo-grid-column field="ProductName" title="Product Name">
* <ng-template kendoGridFilterCellTemplate let-filter let-column="column">
* <kendo-grid-string-filter-cell
* [column]="column"
* [filter]="filter">
* <kendo-filter-not-contains-operator></kendo-filter-not-contains-operator>
* </kendo-grid-string-filter-cell>
* </ng-template>
* </kendo-grid-column>
* ```
* ```html Filter Menu
* <kendo-grid-column field="ProductName" title="Product Name">
* <ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
* <kendo-grid-string-filter-menu
* [column]="column"
* [filter]="filter"
* [filterService]="filterService">
* <kendo-filter-not-contains-operator></kendo-filter-not-contains-operator>
* </kendo-grid-string-filter-menu>
* </ng-template>
* </kendo-grid-column>
* ```
*/
export declare class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
constructor(ctx: ContextService);
static ɵfac: i0.ɵɵFactoryDeclaration<DoesNotContainFilterOperatorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DoesNotContainFilterOperatorComponent, "kendo-filter-not-contains-operator", never, {}, {}, never, never, true, never>;
}