You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is a feature request or a support-question. Please forgive me if it's the later one.
I have the following element in a form built by form-builder:
Multiple Select (Checkboxes) – identifier: multi
Options
Option A – value: option-a – label: a very elaborate text here for A
Option B – value: option-b – label: a very elaborate text here for B
In my Email Finisher I can now use:
<f:foreach="{form.formState.formValues.multi}" as="item"><f:ifcondition="{item} == 'option-a'">
– a very elaborate text here for A
</f:if><f:ifcondition="{item} == 'option-b'">
– a very elaborate text here for B
</f:if></f:for>
This is somewhat unpleasant because I have to repeat every option with its text in the finisher. Is there a way to get the labels in the finisher, so I can place them somehow dynamically?
The text was updated successfully, but these errors were encountered:
I don't know if this is a feature request or a support-question. Please forgive me if it's the later one.
I have the following element in a form built by form-builder:
multi
option-a
– label:a very elaborate text here for A
option-b
– label:a very elaborate text here for B
In my Email Finisher I can now use:
This is somewhat unpleasant because I have to repeat every option with its text in the finisher. Is there a way to get the labels in the finisher, so I can place them somehow dynamically?
The text was updated successfully, but these errors were encountered: