Skip to main content
Skip table of contents

ibihelpme_GetFormularFields

Signaturibihelpme_GetFormularFields(): string
BeschreibungGibt die in der Configuration.xml definierten Eingabefelder zurück
Verfügbar ab API-Version1.0.0

Parameter

Keine Parameter erforderlich

Rückgabewert

string

JSON-Array, welches die definierten Eingabefelder enhält

JS
[        
	{
    	"type": "textbox",
        "id": "subject",
        "caption": "{Issue.IssueSubject}",
        "validators": ["not-empty"]
    }
,
...
,
    {
        "type": "textarea",
        "id": "description",
        "caption": "{Issue.IssueDescription}",
        "rows": 4,
	    "autoGrow": true,
        "validators": ["not-empty"]
    }
]

Weitere Informationen, siehe Eingabefeldarten

Beispiel

JS
var formularFieldsSerialized = window.external.ibihelpme_GetFormularFields();
 
var formularFields = JSON.parse(formularFieldsSerialized);
 
createFormularFields(formularFields);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.