How to programmatically add an option to a dijit.form.Select . I’ve looked all over the place and I’m not able to find it.
Answer
I think looking at the documentation you would see addOption
mySelect.addOption( { label: "new option", value: 1 } );