Adding ressorts
For making ressorts available for your users you have to configure them as part of a Details Pane Template.
Full configuration example
In this example, We define a ressort and a Subressort editable drop-down.
RessortsExample
<tr>
<td>Ressort:</td>
<td class="editable-field">
{{combo-box value=editModel.ressortObject
options=legacyController.selectedTable.ressortsCache
optionIdPath="RessortNr"
optionLabelPath="Name"
mode="select"
ariaLabel="Select Ressort"
}}
</td>
</tr>
<tr>
<td>Subressort:</td>
<td class="editable-field">
{{combo-box value=editModel.subRessortObject
options=editModel.ressortObject.Children
optionIdPath="RessortNr"
optionLabelPath="Name"
mode="select"
ariaLabel="Select Subressort"
}}
</td>
</tr>
Table specific settings are supported for ressorts, which mean you can select ressorts for specific tables