Skip to main content
Skip table of contents

ibihelpme_GetFormularFields

Signatureibihelpme_GetFormularFields(): string
DescriptionReturns the input fields defined in the Configuration.xml
Available from API version1.0.0

Parameter

No parameters required

Return value

string

JSON array which contains the defined input fields

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"]
    }
]

For more information see Input field types

Example

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.