group requiredThe source list of choices. Either a constants group id (options come from that group, value then label per constant), or a JSON array. A plain-value array like [1,2,5,7] makes each value its own visible text with no value attribute; a value-label array like [[1,"January"],[2,"Feb"]] sets the option value from the first item of each pair and the visible label from the second. An unknown group or an empty array produces no output.
selected optionalThe value (or values) to mark as pre-selected. A single value selects one option; a JSON array like ["7","8"] selects several at once, for a multiple select. Every option whose value matches gets the selected attribute. Omit it to leave all options unselected.
{options:{sequence:num:1998:2001}:2000}
[{options:[]:7}]
<select name="month">{options:[[1,"Jan"],[2,"Feb"],[3,"Mar"]]:2}</select>
{options:["red","blue","green"]:blue}
{options:AA_Core_Bins:1}
{options:[1,2,5,7]:7}
{options:[[1,"Jan"],[7,"Jul"],[8,"Aug"]]:["7","8"]}
[{options:no_such_group_zz:1}]
{options:[[1,"January"],[2,"Feb"],[3,"March"]]:2}