I have an HTML form using dojo and have the following code for a radio button selection choice:
<input type="radio" dojoType="dijit.form.RadioButton" name="infoUrgent" value="deferrable" id="deferrable"> Deferrable
<input type="radio" dojoType="dijit.form.RadioButton" name="infoUrgent" value="immediate" id="immediate"> Immediate<br>
I want to get the value for this radio button and pass it to my "backend" script, but NOT onClick or onChange, only after the user presses a Submit button I have on the form. Usually with textboxes, etc. I can get just use dijit.byId('id').value or .attr('value') but since the radio buttons both have different id's I can't use this. The docs from dojocampus mention using the name of the radio button... I'm having trouble getting this to work though... could I get some help?
Thanks.