awesome-bootstrap-checkbox icon indicating copy to clipboard operation
awesome-bootstrap-checkbox copied to clipboard

Is it normal to have indeterminate state on input radio when nothing are selected ?

Open MaxenceMouchard opened this issue 1 year ago • 0 comments

Is it possible to avoid indeterminate style when nothing is checked with this kind of inputs ?

  <div class="form-check abc-checkbox abc-checkbox-success abc-checkbox-circle">
    <input class="form-check-input" type="radio" id="true" name="TrueOrFalse" value="true">
    <label class="form-check-label" for="true">True</label>
  </div>
  
  <div class="form-check abc-checkbox abc-checkbox-danger abc-checkbox-circle">
    <input class="form-check-input" type="radio" id="false" name="TrueOrFalse" value="false">
    <label class="form-check-label" for="false">False</label>
  </div>

MaxenceMouchard avatar Aug 09 '23 10:08 MaxenceMouchard