UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

29 lines (28 loc) 1.04 kB
/** * DevExpress HTML/JS Reporting (viewer\parameters\parametersPanelStandalone.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 { PreviewElements } from '../constants'; import { ParametersPanelModelBase } from './parametersPanelModelBase'; export class ParametersPanelStandalone extends ParametersPanelModelBase { constructor() { super(...arguments); this.showButtons = false; this._showHeader = false; } getDesignerParts() { return [ { id: PreviewElements.ParametersPanel, templateName: PreviewElements.ParametersPanel, model: this.tabInfo, viewModel: this.tabInfo.getViewModel() } ]; } initialize(originalParametersInfo) { super.initialize(originalParametersInfo); if (originalParametersInfo) { this.tabInfo.visible = true; this.tabInfo.active = true; } } }