I have a custom field type with three possible options: yes, no, maybe
I want to display these three options on a rendered template page as a drop down.
Of course I could create a select menu and manually type in the options, but if I change the option names in the custom field, then I have to remember to also change the name in the template. For a large list of items this because even more difficult.
the categories tag lets me display the items in a category on a rendered template page
<select name="catselect">
{exp:channel:categories channel="yourchannel" style="linear"}
<option value="{path='channel'}">{category_name}</option>
{/exp:channel:categories}
</select>I want to see if there is some comparable way to display a custom drop down field type on a rendered template page
Thanks