UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

173 lines (167 loc) 5.06 kB
/** * DevExtreme (ui/drop_down_editor/ui.drop_down_editor.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 { dxElement } from '../../core/element'; import { template } from '../../core/templates/template'; import dxTextBox, { dxTextBoxOptions } from '../text_box'; import { dxTextEditorButton } from '../text_box/ui.text_editor.base'; /** Warning! This type is used for internal purposes. Do not import it directly. */ export interface dxDropDownEditorOptions<T = dxDropDownEditor> extends dxTextBoxOptions<T> { /** * @docid dxDropDownEditorOptions.acceptCustomValue * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ acceptCustomValue?: boolean; /** * @docid dxDropDownEditorOptions.activeStateEnabled * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ activeStateEnabled?: boolean; /** * @docid dxDropDownEditorOptions.applyValueMode * @type Enums.EditorApplyValueMode * @default "instantly" * @prevFileNamespace DevExpress.ui * @public */ applyValueMode?: 'instantly' | 'useButtons'; /** * @docid dxDropDownEditorOptions.buttons * @type Array<Enums.DropDownEditorButtonName,dxTextEditorButton> * @default undefined * @prevFileNamespace DevExpress.ui * @public */ buttons?: Array<'clear' | 'dropDown' | dxTextEditorButton>; /** * @docid dxDropDownEditorOptions.deferRendering * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ deferRendering?: boolean; /** * @docid dxDropDownEditorOptions.dropDownButtonTemplate * @type template|function * @default "dropDownButton" * @type_function_param1 buttonData:object * @type_function_param1_field1 text:string * @type_function_param1_field2 icon:string * @type_function_param2 contentElement:dxElement * @type_function_return string|Node|jQuery * @prevFileNamespace DevExpress.ui * @public */ dropDownButtonTemplate?: template | ((buttonData: { text?: string, icon?: string }, contentElement: dxElement) => string | Element | JQuery); /** * @docid dxDropDownEditorOptions.onClosed * @extends Action * @action * @prevFileNamespace DevExpress.ui * @public */ onClosed?: ((e: { component?: T, element?: dxElement, model?: any }) => any); /** * @docid dxDropDownEditorOptions.onOpened * @extends Action * @action * @prevFileNamespace DevExpress.ui * @public */ onOpened?: ((e: { component?: T, element?: dxElement, model?: any }) => any); /** * @docid dxDropDownEditorOptions.openOnFieldClick * @type boolean * @default false * @prevFileNamespace DevExpress.ui * @public */ openOnFieldClick?: boolean; /** * @docid dxDropDownEditorOptions.opened * @type boolean * @default false * @fires dxDropDownEditorOptions.onOpened * @fires dxDropDownEditorOptions.onClosed * @prevFileNamespace DevExpress.ui * @public */ opened?: boolean; /** * @docid dxDropDownEditorOptions.showDropDownButton * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ showDropDownButton?: boolean; /** * @docid dxDropDownEditorOptions.value * @type any * @default null * @prevFileNamespace DevExpress.ui * @public */ value?: any; } /** Warning! This type is used for internal purposes. Do not import it directly. */ /** A drop-down editor widget. */ export default class dxDropDownEditor extends dxTextBox { constructor(element: Element, options?: dxDropDownEditorOptions) constructor(element: JQuery, options?: dxDropDownEditorOptions) /** * @docid dxDropDownEditorMethods.close * @publicName close() * @prevFileNamespace DevExpress.ui * @public */ close(): void; /** * @docid dxDropDownEditorMethods.content * @publicName content() * @return dxElement * @prevFileNamespace DevExpress.ui * @public */ content(): dxElement; /** * @docid dxDropDownEditorMethods.field * @publicName field() * @return dxElement * @prevFileNamespace DevExpress.ui * @public */ field(): dxElement; /** * @docid dxDropDownEditorMethods.open * @publicName open() * @prevFileNamespace DevExpress.ui * @public */ open(): void; } /** Warning! This type is used for internal purposes. Do not import it directly. */ export type Options = dxDropDownEditorOptions; /** @deprecated use Options instead */ /** Warning! This type is used for internal purposes. Do not import it directly. */ export type IOptions = dxDropDownEditorOptions;