AdaptableFormField
Defines a Field that appears in an Adaptable Form
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| defaultValue | Field Default Value - can be of type string, boolean, number |
| fieldType | Field Type: text, date, number, checkbox, select, textOutput |
| label | Label to display in the Field |
| name | Name of the Field |
| options | Items to populate the 'select' fieldType |
Property Details
defaultValue
Field Default Value - can be of type string, boolean, number
TypeScript
defaultValue?: string | boolean | number;Property Value
string | boolean | number
fieldType
Field Type: text, date, number, checkbox, select, textOutput
TypeScript
fieldType: AdaptableFormFieldType;Property Value
label
Label to display in the Field
TypeScript
label: string;Property Value
string
name
Name of the Field
TypeScript
name: string;Property Value
string
options
Items to populate the 'select' fieldType
TypeScript
options?: {
value: any;
label: string;
}[];Property Value
\{ value: any; label: string; \}[]