AdaptableFormField

Defines a Field that appears in an Adaptable Form

TypeScript
export interface

Properties

PropertyDescription
defaultValueField Default Value - can be of type string, boolean, number
fieldTypeField Type: text, date, number, checkbox, select, textOutput
labelLabel to display in the Field
nameName of the Field
optionsItems 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

AdaptableFormFieldType

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; \}[]