/*! * * Wijmo Library 5.20251.40 * 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.grouppanel} * Contains Angular 2 components for the wijmo.grid.grouppanel module. * * wijmo.angular2.grid.grouppanel is an external TypeScript module that can be imported to your code * using its ambient module name. For example: * *
import * as wjPanel from 'wijmo/wijmo.angular2.grid.grouppanel'; * import * as wjGrid from 'wijmo/wijmo.angular2.grid'; * * @Component({ * directives: [wjGrid.WjFlexGrid, wjPanel.WjGroupPanel], * template: ` * <wj-group-panel * [grid]="flex" * [placeholder]="'Drag columns here to create groups.'"> * </wj-group-panel> * <wj-flex-grid #flex [itemsSource]="data"> * </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 wjcGridGrouppanel from 'wijmo/wijmo.grid.grouppanel'; declare var wjGroupPanelMeta: IWjComponentMeta; export { wjGroupPanelMeta }; /** * Angular 2 component for the {@link wijmo.grid.grouppanel.GroupPanel} control. * * Use the wj-group-panel component to add GroupPanel controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjGroupPanel component is derived from the GroupPanel control and * inherits all its properties, events and methods. */ export declare class WjGroupPanel extends wjcGridGrouppanel.GroupPanel 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