purposeofrequest
This configuration is optional when using the plugin Purpose_Of_Request.
-
Documentation
-
YAML Format
-
XML Format
| Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets. |
Use this element when you want the user to enter the purpose of the request in a text field.
Use this element when you want the user to select the purpose of the request from a drop-down list of "options" that you have configured.
Dialog field that prompts the user for the purpose of the request. Possible field types are an input field ("textfield") or a drop-down list ("select").
Use this element when you want the user to enter the purpose of the request in a text field.
Use this element when you want the user to select the purpose of the request from a drop-down list of "options" that you have configured.
Optionally, in addition to the first purpose of request ("firstField"), the user can be asked to provide additional information about the purpose of request. Possible field types are an input field ("textfield") or a drop-down list ("select").
Configuration of the form that the user has to fill in to specify the purpose of request
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
cadenzaconfig:
settings:
purposeofrequest:
firstField:
textfield:
mandatory: true
printName: "text"
description: "text"
select:
mandatory: true
printName: "text"
description: "text"
options:
- "text"
- "text"
secondField:
textfield:
mandatory: true
printName: "text"
description: "text"
select:
mandatory: true
printName: "text"
description: "text"
options:
- "text"
- "text"
Filename: purposeofrequest-config.xml
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<purposeOfRequestConfiguration>
<firstField>
<textfield mandatory="true">
<printName>text</printName>
<description>text</description>
</textfield>
<select mandatory="true">
<printName>text</printName>
<description>text</description>
<options>
<option>text</option>
<option>text</option>
</options>
</select>
</firstField>
<secondField>
<textfield mandatory="true">
<printName>text</printName>
<description>text</description>
</textfield>
<select mandatory="true">
<printName>text</printName>
<description>text</description>
<options>
<option>text</option>
<option>text</option>
</options>
</select>
</secondField>
</purposeOfRequestConfiguration>