Is there a way to fill in a pulldown in an SAEF using values specified in a template? The values are going to have to be dynamic, so I can’t pre-fill them in the custom field. The following code in the SAEF is displaying correctly, but after submission no values appear in the entry.
{if pulldown}
<select id="{field_name}" name="{field_name}">
<option value="Purpose">Purpose
<option value="Prices">Prices
<option value="Employees">Employees
<option value="{custom1}">{custom1}
<option value="{custom2}">{custom2}
<option value="Community">Community
</select>
{/if}