form-options.d.ts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { NestedOption } from '../../../core/nested-option';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxoFormOptions extends NestedOption {
  16. accessKey: string;
  17. activeStateEnabled: boolean;
  18. alignItemLabels: boolean;
  19. alignItemLabelsInAllGroups: boolean;
  20. colCount: number | string;
  21. colCountByScreen: {
  22. lg?: number;
  23. md?: number;
  24. sm?: number;
  25. xs?: number;
  26. };
  27. customizeItem: Function;
  28. disabled: boolean;
  29. elementAttr: any;
  30. focusStateEnabled: boolean;
  31. formData: any;
  32. height: number | Function | string;
  33. hint: string;
  34. hoverStateEnabled: boolean;
  35. items: Array<DevExpress.ui.dxFormSimpleItem | DevExpress.ui.dxFormGroupItem | DevExpress.ui.dxFormTabbedItem | DevExpress.ui.dxFormEmptyItem | DevExpress.ui.dxFormButtonItem>;
  36. labelLocation: string;
  37. minColWidth: number;
  38. onContentReady: Function;
  39. onDisposing: Function;
  40. onEditorEnterKey: Function;
  41. onFieldDataChanged: Function;
  42. onInitialized: Function;
  43. onOptionChanged: Function;
  44. optionalMark: string;
  45. readOnly: boolean;
  46. requiredMark: string;
  47. requiredMessage: string;
  48. rtlEnabled: boolean;
  49. screenByWidth: Function;
  50. scrollingEnabled: boolean;
  51. showColonAfterLabel: boolean;
  52. showOptionalMark: boolean;
  53. showRequiredMark: boolean;
  54. showValidationSummary: boolean;
  55. tabIndex: number;
  56. validationGroup: string;
  57. visible: boolean;
  58. width: number | Function | string;
  59. }