devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
28 lines (27 loc) • 1.45 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\internal\parameterLayout\_parametersLayoutTreeListController.d.ts)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { ObjectStructureTreeListController } from '@devexpress/analytics-core/analytics-internal';
import { IAction } from '@devexpress/analytics-core/analytics-utils';
import { TreeListItemViewModel } from '@devexpress/analytics-core/analytics-widgets-internal';
import * as ko from 'knockout';
import { IParameterContainer, ParameterPanelLayoutItem } from '../../dataObjects/parameters/layoutItems';
import { IReportDesignerParameterEditingSettings } from '../../utils/inititalizer';
export declare class ParametersLayoutTreeListController extends ObjectStructureTreeListController {
private _report;
private _selectedItemModel;
private _parameterEditingSettings;
private _innerSwap;
private _outerSwap;
private _siblingsSwap;
private _checkIndex;
constructor(_report: IParameterContainer, _selectedItemModel: ko.Observable<ParameterPanelLayoutItem>, _parameterEditingSettings: IReportDesignerParameterEditingSettings);
addItem(item: ParameterPanelLayoutItem): void;
move(goUp?: boolean): void;
delete(item?: ParameterPanelLayoutItem): void;
getActions: (item: TreeListItemViewModel) => IAction[];
}