| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*!
- * devextreme-angular
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file in the root of the project for details.
- *
- * https://github.com/DevExpress/devextreme-angular
- */
- import { NestedOption } from '../../../core/nested-option';
- import DevExpress from 'devextreme/bundles/dx.all';
- export declare abstract class DxoFormOptions extends NestedOption {
- accessKey: string;
- activeStateEnabled: boolean;
- alignItemLabels: boolean;
- alignItemLabelsInAllGroups: boolean;
- colCount: number | string;
- colCountByScreen: {
- lg?: number;
- md?: number;
- sm?: number;
- xs?: number;
- };
- customizeItem: Function;
- disabled: boolean;
- elementAttr: any;
- focusStateEnabled: boolean;
- formData: any;
- height: number | Function | string;
- hint: string;
- hoverStateEnabled: boolean;
- items: Array<DevExpress.ui.dxFormSimpleItem | DevExpress.ui.dxFormGroupItem | DevExpress.ui.dxFormTabbedItem | DevExpress.ui.dxFormEmptyItem | DevExpress.ui.dxFormButtonItem>;
- labelLocation: string;
- minColWidth: number;
- onContentReady: Function;
- onDisposing: Function;
- onEditorEnterKey: Function;
- onFieldDataChanged: Function;
- onInitialized: Function;
- onOptionChanged: Function;
- optionalMark: string;
- readOnly: boolean;
- requiredMark: string;
- requiredMessage: string;
- rtlEnabled: boolean;
- screenByWidth: Function;
- scrollingEnabled: boolean;
- showColonAfterLabel: boolean;
- showOptionalMark: boolean;
- showRequiredMark: boolean;
- showValidationSummary: boolean;
- tabIndex: number;
- validationGroup: string;
- visible: boolean;
- width: number | Function | string;
- }
|