{% set originalField = field %} {# Set the value on the field so that we can modify the element query based on that #} {% do originalField.populateValue(value, submission) %} {# Override the `field` with the correct display type, populated from the Recipients field #} {% set field = originalField.getDisplayTypeField() %} {# Get the value for the field, depending on the display type #} {% set value = originalField.getDisplayTypeValue(value) %} {% if originalField.displayType == 'dropdown' %} {{ formieInclude('fields/dropdown') }} {% endif %} {% if originalField.displayType == 'checkboxes' %} {{ formieInclude('fields/checkboxes') }} {% endif %} {% if originalField.displayType == 'radio' %} {{ formieInclude('fields/radio') }} {% endif %}