UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

166 lines (159 loc) 5.69 kB
/** * DevExtreme (ui/pivot_grid_field_chooser.d.ts) * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import '../jquery_augmentation'; import { dxElement } from '../core/element'; import { event } from '../events'; import PivotGridDataSource, { PivotGridDataSourceField } from './pivot_grid/data_source'; import Widget, { WidgetOptions } from './widget/ui.widget'; /** Warning! This type is used for internal purposes. Do not import it directly. */ export interface dxPivotGridFieldChooserOptions extends WidgetOptions<dxPivotGridFieldChooser> { /** * @docid dxPivotGridFieldChooserOptions.allowSearch * @type boolean * @default false * @prevFileNamespace DevExpress.ui * @public */ allowSearch?: boolean; /** * @docid dxPivotGridFieldChooserOptions.applyChangesMode * @type Enums.ApplyChangesMode * @default "instantly" * @prevFileNamespace DevExpress.ui * @public */ applyChangesMode?: 'instantly' | 'onDemand'; /** * @docid dxPivotGridFieldChooserOptions.dataSource * @type PivotGridDataSource * @default null * @ref * @prevFileNamespace DevExpress.ui * @public */ dataSource?: PivotGridDataSource; /** * @docid dxPivotGridFieldChooserOptions.headerFilter * @type object * @prevFileNamespace DevExpress.ui * @public */ headerFilter?: { allowSearch?: boolean, height?: number, searchTimeout?: number, showRelevantValues?: boolean, texts?: { cancel?: string, emptyValue?: string, ok?: string }, width?: number }; /** * @docid dxPivotGridFieldChooserOptions.height * @type number|string|function * @default 400 * @type_function_return number|string * @prevFileNamespace DevExpress.ui * @public */ height?: number | string | (() => number | string); /** * @docid dxPivotGridFieldChooserOptions.layout * @type Enums.PivotGridFieldChooserLayout * @default 0 * @prevFileNamespace DevExpress.ui * @public */ layout?: 0 | 1 | 2; /** * @docid dxPivotGridFieldChooserOptions.onContextMenuPreparing * @type function(e) * @type_function_param1 e:object * @type_function_param1_field4 items:Array<Object> * @type_function_param1_field5 area:string * @type_function_param1_field6 field:PivotGridDataSourceOptions.fields * @type_function_param1_field7 jQueryEvent:jQuery.Event:deprecated(event) * @type_function_param1_field8 event:event * @extends Action * @action * @prevFileNamespace DevExpress.ui * @public */ onContextMenuPreparing?: ((e: { component?: dxPivotGridFieldChooser, element?: dxElement, model?: any, items?: Array<any>, area?: string, field?: PivotGridDataSourceField, jQueryEvent?: JQueryEventObject, event?: event }) => any); /** * @docid dxPivotGridFieldChooserOptions.searchTimeout * @type number * @default 500 * @prevFileNamespace DevExpress.ui * @public */ searchTimeout?: number; /** * @docid dxPivotGridFieldChooserOptions.state * @type object * @default null * @prevFileNamespace DevExpress.ui * @public */ state?: any; /** * @docid dxPivotGridFieldChooserOptions.texts * @type object * @prevFileNamespace DevExpress.ui * @public */ texts?: { allFields?: string, columnFields?: string, dataFields?: string, filterFields?: string, rowFields?: string }; } /** A complementary widget for the PivotGrid that allows you to manage data displayed in the PivotGrid. The field chooser is already integrated in the PivotGrid and can be invoked using the context menu. If you need to continuously display the field chooser near the PivotGrid widget, use the PivotGridFieldChooser widget. */ export default class dxPivotGridFieldChooser extends Widget { constructor(element: Element, options?: dxPivotGridFieldChooserOptions) constructor(element: JQuery, options?: dxPivotGridFieldChooserOptions) /** * @docid dxPivotGridFieldChooserMethods.applyChanges * @publicName applyChanges() * @prevFileNamespace DevExpress.ui * @public */ applyChanges(): void; /** * @docid dxPivotGridFieldChooserMethods.cancelChanges * @publicName cancelChanges() * @prevFileNamespace DevExpress.ui * @public */ cancelChanges(): void; /** * @docid dxPivotGridFieldChooserMethods.getDataSource * @publicName getDataSource() * @return PivotGridDataSource * @prevFileNamespace DevExpress.ui * @public */ getDataSource(): PivotGridDataSource; /** * @docid dxPivotGridFieldChooserMethods.updateDimensions * @publicName updateDimensions() * @prevFileNamespace DevExpress.ui * @public */ updateDimensions(): void; } declare global { interface JQuery { dxPivotGridFieldChooser(): JQuery; dxPivotGridFieldChooser(options: "instance"): dxPivotGridFieldChooser; dxPivotGridFieldChooser(options: string): any; dxPivotGridFieldChooser(options: string, ...params: any[]): any; dxPivotGridFieldChooser(options: dxPivotGridFieldChooserOptions): JQuery; } } /** Warning! This type is used for internal purposes. Do not import it directly. */ export type Options = dxPivotGridFieldChooserOptions; /** @deprecated use Options instead */ /** Warning! This type is used for internal purposes. Do not import it directly. */ export type IOptions = dxPivotGridFieldChooserOptions;