devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
34 lines (33 loc) • 1.16 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\tools\dialogs\reportDialogBase.d.ts)
* Version: 24.2.6
* Build date: Mar 18, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { Disposable } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
import { INavigateTab } from '../navigation/navigateTab';
export interface IDialogModel {
getUrl: () => string;
setUrl: (url: string) => void;
onShow: (tab: INavigateTab) => void;
popupButtons: any[];
}
export declare class ReportDialogBase extends Disposable {
private _visible;
dispose(): void;
show(tab: INavigateTab): void;
customize(template: string, model: IDialogModel): void;
constructor();
width: ko.Observable<any>;
height: ko.Observable<any>;
template: ko.Observable<string>;
buttons: any[];
model: ko.Observable<IDialogModel>;
tab: ko.Observable<INavigateTab>;
disabled: ko.Observable<boolean>;
visible: ko.Computed<boolean>;
cancel(): void;
container: (element: HTMLElement) => HTMLElement;
}