@cause-911/devextreme
Version:
Run `npm install @cause-911/devextreme --save` to add this library to your project
33 lines (32 loc) • 1.35 kB
TypeScript
import { ElementRef, NgZone, OnInit, PlatformRef } from '@angular/core';
import { DxDataGridComponent, DxTemplateHost, INestedOptionContainer, IterableDifferHelper, NestedOptionHost, WatcherHelper } from 'devextreme-angular';
import { TransferState } from '@angular/platform-browser';
import { Location, LocationStrategy } from '@angular/common';
export declare class CauseDataGridComponent extends DxDataGridComponent implements OnInit, INestedOptionContainer {
private location;
private locationStrategy;
allowPrint: boolean;
hoverStateEnabled: boolean;
rowAlternationEnabled: boolean;
showBorders: boolean;
export: {
allowExportSelectedData: boolean;
enabled: boolean;
fileName: string;
};
filterRow: {
visible: boolean;
};
pager: {
showPageSizeSelector: boolean;
showNavigationButtons: boolean;
showInfo: boolean;
visible: boolean;
};
isEditing: boolean;
constructor(element: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, watcherHelper: WatcherHelper, idh: IterableDifferHelper, optionHost: NestedOptionHost, transferState: TransferState, platform: PlatformRef, location: Location, locationStrategy: LocationStrategy);
ngOnInit(): void;
private toolbarPreparing;
private initialized;
private print;
}