Interface IFieldParameter

interface IFieldParameter {
    adminVisibility?: boolean;
    copyfromdoc?: boolean;
    externalHelp?: string;
    hide_UI?: boolean;
    hide_document?: boolean;
    hide_publication?: boolean;
    hide_report?: boolean;
    inlineHelp?: string;
    invisible?: boolean;
    popupHelp?: string;
    readonly?: boolean;
    requiresContent?: boolean;
    unsafeHtml?: number;
    visibleOption?: string;
    [key: string]: any;
}

Hierarchy

Indexable

[key: string]: any

Properties

adminVisibility?: boolean

legacy options

copyfromdoc?: boolean

this allows to copy fields from underlying DOC into the SIGN item. Note: Fields are copied only if this is set to true and the labels (names) of the field is the same in the DOC and the SIGN

externalHelp?: string

this can be set to point to a an external website which is openend when user clicks on a link, e.g. "externalHelp":"matrix.com". Note this must be a website which is accesible through https://url

hide_UI?: boolean
hide_document?: boolean

if set to true the field will not be shown in documents

hide_publication?: boolean

if set to true the field will not be shown in published (QMS)

hide_report?: boolean

if set to true the field will not be shown in reports

inlineHelp?: string

this can be set to render a help line underneath the "heading":"enter a long description"

invisible?: boolean

for SIGN category if set to true, the field is not visible (only makes sense with the above flag)

popupHelp?: string

this can be set to show help as a tooltip, e.g. "popupHelp":"enter a short description"

readonly?: boolean

if set to true, the control will not be editable by the user

requiresContent?: boolean

legacy options

unsafeHtml?: number

set to 1 to not clean the field values

visibleOption?: string

for folder category

Generated using TypeDoc