Interface IControlOptions

this is info delivered by the UI when rendering the control

interface IControlOptions {
    canEdit?: boolean;
    controlState?: ControlState;
    fieldHandler?: IFieldHandler;
    fieldId?: number;
    fieldType?: string;
    fieldValue?: string;
    help?: string;
    id?: string;
    isFolder?: boolean;
    isForm?: boolean;
    isHistory?: number;
    isItem?: boolean;
    isPrint?: boolean;
    isTooltip?: boolean;
    item?: IItem;
    parameter?: IFieldParameter;
    placeholder: string;
    requiresContent?: boolean;
    type?: string;
    valueChanged?: (() => unknown);
}

Hierarchy

Properties

canEdit?: boolean
controlState?: ControlState
fieldHandler?: IFieldHandler
fieldId?: number
fieldType?: string
fieldValue?: string
help?: string
id?: string
isFolder?: boolean
isForm?: boolean
isHistory?: number
isItem?: boolean
isPrint?: boolean
isTooltip?: boolean
item?: IItem
parameter?: IFieldParameter
placeholder: string
requiresContent?: boolean
type?: string
valueChanged?: (() => unknown)

Type declaration

    • (): unknown
    • Returns unknown

Generated using TypeDoc