jeudi 14 octobre 2021

If I select a checkbox, I deactivate another

I am trying to disable the checkboxes elsewhere when I select the "no" checkbox option. And instead, if I choose "yes" it leaves me the other boxes active.

I have this snippet:

        <!-- IVF fertilization -->
        <div class='col-sm-4'>
            <?=_('IVF fertilization')?>
            <div>
            <input type="radio" id="yesFe" name="niptData_ivfFertilization" value='1' <?=($_SESSION['REQUEST']['niptData_ivfFertilization-required0allow'] == '1' OR $registration->test->data->ivfFertilization == '1')?'checked':''?>> 
            <label for="yesFe" class='smallLabel'><?=_('Yes')?></label> 
            </div>

            <div>
            <input type="radio" id="noFe" name="niptData_ivfFertilization" value='0' <?=($_SESSION['REQUEST']['niptData_ivfFertilization-required0allow'] == '0' OR $registration->test->data->ivfFertilization == '0')?'checked':''?>> 
            <label for="noFe" class='smallLabel'><?=_('No')?></label> 
            </div>
        </div>

        <!-- if IVF ovum -->
        <div class='col-sm-4'>
            <?=_('If IVF ovum')?>
            <div>
            <input type="radio" id="ownOv" name="niptData_ovum" value='1' data-validation="" <?=($_SESSION['OPTIONAL']['niptData_ovum'] == '1' OR $registration->test->data->ovum == '1')?'checked':''?>> 
            <label for="ownOv" class='smallLabel'><?=_('Own')?></label> 
            </div>

            <div>
            <input type="radio" id="fromADonor" name="niptData_ovum" value='2' data-validation="" <?=($_SESSION['OPTIONAL']['niptData_ovum'] == '2' OR $registration->test->data->ovum == '2')?'checked':''?>> 
            <label for="fromADonor" class='smallLabel'><?=_('From a donor')?></label> 
            </div>
            <br>
        </div>



Aucun commentaire:

Enregistrer un commentaire