Interface JFormMetaData

interface JFormMetaData {
    areAllInputControlsReadOnly: boolean;
    hasPhoto: boolean;
    id: JId;
    idAttributeName: null | string;
    isCreateSupported: boolean;
    isDeleteSupported: boolean;
    isFakeAttributeForm?: boolean;
    isUpdateSupported: boolean;
    name: string;
    permissions: JFormPermissions;
    readOnly: boolean;
    schema: JFormSchema;
    type: JFORM_TYPES;
    uiSchema: JFormUISchema;
    validationRules: JFormValidationRules;
}

Properties

areAllInputControlsReadOnly: boolean
hasPhoto: boolean
id: JId
idAttributeName: null | string
isCreateSupported: boolean
isDeleteSupported: boolean
isFakeAttributeForm?: boolean
isUpdateSupported: boolean
name: string
permissions: JFormPermissions
readOnly: boolean
schema: JFormSchema
uiSchema: JFormUISchema
validationRules: JFormValidationRules