devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
26 lines (25 loc) • 924 B
JavaScript
/**
* DevExpress HTML/JS Reporting (viewer\binding\jsReportParametersPanelBinding.js)
* Version: 24.2.7
* Build date: Apr 29, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { createStandaloneParametersPanel } from '../internal/_initializer';
import { JSReportParametersPanel } from './jsReportParametersPanel';
import { JSReportViewerBindingBase } from './jsReportViewerBindingBase';
export class JSReportParametersPanelBinding extends JSReportViewerBindingBase {
_createModel(element) {
return createStandaloneParametersPanel({
model: this._options,
callbacks: this._callbacks,
element
});
}
_createSender(viewModel) {
return new JSReportParametersPanel(viewModel);
}
_showTroubleshootingPageWrapper() {
return false;
}
}