Forms
Checkbox & Radio
Custom radio, checkbox and switch examples of Bootstrap.
Requirements
// Checkbox & Radio sources are included with Bootstrap.
Example
Html
// Checkbox <div> <label class="form-label">Basic</label> <div class="form-check"> <input class="form-check-input" type="checkbox" id="customCheck1" /> <label class="form-check-label" for="customCheck1">Default checkbox</label> </div> </div> // Radio <div> <label class="form-label">Basic</label> <div class="form-check"> <input type="radio" id="customRadio1" name="customRadio" class="form-check-input" /> <label class="form-check-label" for="customRadio1">Toggle this custom radio</label> </div> </div>
More Examples
You may find more examples in
Interface.Forms.Controls.CheckboxRadio.html
file which doesn't need initialization.