Below is what happens for using radio button. Can you help me see what to change for enum? This particular enum has 5 fields but if you can show me one, I can adjust.
My 87 questionnaire is going to be a bear to fix though!
<li class="formItem">
<div class="formGroup">
<div class="lineGroup">
<div class="fullColumnGroup"><label for="fam_race__1" class="sublabel" >fam_race:</label>
<span class="radioFieldGroup_Narrow">
<span class="radioGroup_Narrow">
<label class="radioSublabel_Narrow" for="fam_race__1">
yes <input type="radio" name="fam_race" id="fam_race__1" value="1" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("familyupdate","fam_race"):"".$WADAfamily_update->getColumnVal("fam_race") .""),"1"))) {echo "checked=\"checked\"";} ?> tabindex="17" title="Please enter a value."></label>
<label class="radioSublabel_Narrow" for="fam_race__2">
no <input type="radio" name="fam_race" id="fam_race__2" value="0" class="formRadioField_Standard" <?php if (!(strcmp((isset($_GET["invalid"])?ValidatedField("familyupdate","fam_race"):"".$WADAfamily_update->getColumnVal("fam_race") .""),"0"))) {echo "checked=\"checked\"";} ?> tabindex="18"></label>
</span>
</span>
</div>
</div>
</div>
</li>