IFieldConfig
@spartanfx/react / IFieldConfig
Interface: IFieldConfig
Represents the configuration of an additional field rendered within the confirmation dialog.
Properties
| Property | Type | Description |
|---|---|---|
defaultValue? | any | Optional default value for the field. |
disabled? | boolean | Optional parameter to set the field as disabled - Ignored if 'hidden' is set to true |
fieldLabel | string | Display label for the field. |
fieldName | string | Internal name of the field (used as a key). |
fieldType | FieldType | Type of input field to render (text, date, etc.). |
hidden? | boolean | Optional parameter to hide the field - If true the default value will be returned |
options? | IComboBoxOption[] | Optional list of options (used with choices, multichoices and 'radio'). |
required? | boolean | Indicates whether the field is required for submission. |