/*! * * Wijmo Library 5.20252.44 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.angular2.grid.filter} * Contains Angular 2 components for the wijmo.grid.filter module. * * wijmo.angular2.grid.filter is an external TypeScript module that can be imported to your code * using its ambient module name. For example: * *
import * as wjFilter from 'wijmo/wijmo.angular2.grid.filter';
* import * as wjGrid from 'wijmo/wijmo.angular2.grid';
*
* @Component({
* directives: [wjGrid.WjFlexGrid, wjFilter.WjFlexGridFilter],
* template: `
* <wj-flex-grid [itemsSource]="data">
* <wj-flex-grid-filter [filterColumns]="['country', 'expenses']"></wj-flex-grid-filter>
* </wj-flex-grid>`,
* selector: 'my-cmp',
* })
* export class MyCmp {
* data: any[];
* }
*
*/
/**
*
*/
export declare var ___keepComment: any;
import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
import { IWjComponentMetadata, IWjComponentMeta } from 'wijmo/wijmo.angular2.directiveBase';
import * as wjcGridFilter from 'wijmo/wijmo.grid.filter';
declare var wjFlexGridFilterMeta: IWjComponentMeta;
export { wjFlexGridFilterMeta };
/**
* Angular 2 component for the {@link wijmo.grid.filter.FlexGridFilter} class.
*
* The wj-flex-grid-filter component must be
* contained in a {@link wijmo.angular2.grid.WjFlexGrid} component.
*
* Use the wj-flex-grid-filter component to add FlexGridFilter controls to your
* Angular 2 applications. For details about Angular 2 markup syntax, see
* Angular 2 Markup.
*
* The WjFlexGridFilter component is derived from the FlexGridFilter class and
* inherits all its properties, events and methods.
*/
export declare class WjFlexGridFilter extends wjcGridFilter.FlexGridFilter implements OnInit, OnDestroy, AfterViewInit {
static readonly meta: IWjComponentMetadata;
private _wjBehaviour;
/**
* Indicates whether the component has been initialized by Angular.
* Changes its value from false to true right before triggering the initialized event.
*/
isInitialized: boolean;
/**
* This event is triggered after the component has been initialized by Angular, that is
* all bound properties have been assigned and child components (if any) have been initialized.
*/
initialized: EventEmitter