devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
23 lines (22 loc) • 1.09 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\widgets\nameEditor.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 { IDisplayedObject } from '@devexpress/analytics-core/analytics-internal';
import { ISerializationInfo } from '@devexpress/analytics-core/analytics-utils';
import { Editor, IEditorViewModel } from '@devexpress/analytics-core/analytics-widgets';
import * as ko from 'knockout';
export interface INameEditorViewModel extends IEditorViewModel {
generateRules: (rules: any) => any;
}
export declare class NameEditor extends Editor {
createViewModel(): IEditorViewModel;
constructor(info: ISerializationInfo, level: any, parentDisabled?: ko.Computed<boolean>, textToSearch?: any);
_getEditorValidationRules(): any[];
_filterControls(controls: IDisplayedObject[]): IDisplayedObject[];
generateRules(allControls: ko.ObservableArray<IDisplayedObject>): any[];
currentValidationRules: ko.Observable<any[]>;
}