defines options for the select control
// simple array
{ view:"select", label:"Version", options:["1.0", "1.5", "2.0"]}
// id-value pairs
{ view:"select", value: 2, label:"Branch", options:[
{ "id":1, "value":"Master" },
{ "id":2, "value":"Release" }
]},
// server-side options
{ view:"select", label:"Version", options:"server/options.php" }
Options can be set as:
The initially selected option is defined by the value property.