interface JFormUIControl {
    align?: JFORM_UI_CONTROL_ALIGNMENTS;
    colSpan?: number;
    date?: boolean;
    dateFormat?: string;
    dateNow?: boolean;
    dateTime?: boolean;
    deleteWithElement?: boolean;
    entries?: JFormUIControlEntry[];
    fontBold?: boolean;
    fontItalic?: boolean;
    id: string;
    label?: string;
    layerId?: JId;
    mask?: string;
    multi?: boolean;
    onlyLeafSelection?: boolean;
    parentAttributeName?: string;
    rows?: number;
    ruleCalculated?: object;
    ruleReadOnly?: object;
    ruleRequired?: object;
    ruleVisible?: object;
    scope?: string;
    subFormId?: JId;
    tableAttributes?: JFormAttribute[];
    tooltip?: string;
    tree?: JFormUIControlTreeElement[];
    type: "Control";
    widget: JFORM_WIDGET_TYPES;
}

Properties

colSpan?: number
date?: boolean
dateFormat?: string
dateNow?: boolean
dateTime?: boolean
deleteWithElement?: boolean
fontBold?: boolean
fontItalic?: boolean
id: string
label?: string
layerId?: JId
mask?: string
multi?: boolean
onlyLeafSelection?: boolean
parentAttributeName?: string
rows?: number
ruleCalculated?: object
ruleReadOnly?: object
ruleRequired?: object
ruleVisible?: object
scope?: string
subFormId?: JId
tableAttributes?: JFormAttribute[]
tooltip?: string
type: "Control"