interface JFormFieldInputText {
    align: JFORM_UI_CONTROL_ALIGNMENTS;
    attribute: JFormFieldAttribute;
    defaultValue: string;
    id: string;
    labelPrefix: string;
    labelSuffix: string;
    maskFormatter: string;
    maxNumberCharacter: number;
    multiLine: boolean;
    parentAttribute: string;
    range: null | {
        max: number;
        min: number;
    };
    readOnly: boolean;
    required: boolean;
    ruleCalculated?: string;
    ruleReadOnly?: string;
    ruleRequired?: string;
    ruleVisible?: string;
    tooltip: string;
    type: JFORM_FIELD_TYPES;
}

Hierarchy (view full)

Properties

defaultValue: string
id: string
labelPrefix: string
labelSuffix: string
maskFormatter: string
maxNumberCharacter: number
multiLine: boolean
parentAttribute: string
range: null | {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
readOnly: boolean
required: boolean
ruleCalculated?: string
ruleReadOnly?: string
ruleRequired?: string
ruleVisible?: string
tooltip: string