Checkbox
Angular Bootstrap 5 Checkbox
The checkbox is a component used to allow a user to make multiple choices that are broadly used in forms and surveys. Checkboxes are used to select one or several options in a list, while radio (option) buttons are for selecting one option from many.
Basic example
Browser default checkboxes and radios are replaced with the help of .form-check
,
a series of classes for both input types that improve the layout and behavior of their HTML
elements, that provide greater customization and cross browser consistency. Checkboxes are for
selecting one or several options in a list, while radios are for selecting one option from
many.
Structurally, our <input>
s and <label>
s are sibling
elements as opposed to an <input>
within a <label>
. This
is slightly more verbose as you must specify id
and for
attributes
to relate the <input>
and <label>
.
We use the sibling selector (~
) for all our <input>
states,
like :checked
or :disabled
. When combined with the
.form-check-label
class, we can easily style the text for each item based on the
<input>
's state.
<!-- Default checkbox -->
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckDefault"
/>
<label class="form-check-label" for="flexCheckDefault">
Default checkbox
</label>
</div>
<!-- Checked checkbox -->
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckChecked"
[checked]="true"
/>
<label class="form-check-label" for="flexCheckChecked">
Checked checkbox
</label>
</div>
Disabled
Add the disabled
input and the associated <label>
s are
automatically styled to match with a lighter color to help indicate the input’s state.
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckDisabled"
[disabled]="true"
/>
<label class="form-check-label" for="flexCheckDisabled"> Disabled checkbox </label>
</div>
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckCheckedDisabled"
[checked]="true"
[disabled]="true"
/>
<label class="form-check-label" for="flexCheckCheckedDisabled">
Disabled checked checkbox
</label>
</div>
Inline
Group checkboxes or radios on the same horizontal row by adding
.form-check-inline
to any .form-check
.
<div class="form-check form-check-inline">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
/>
<label class="form-check-label" for="inlineCheckbox1">1</label>
</div>
<div class="form-check form-check-inline">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
id="inlineCheckbox2"
value="option2"
/>
<label class="form-check-label" for="inlineCheckbox2">2</label>
</div>
<div class="form-check form-check-inline">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
id="inlineCheckbox3"
value="option3"
[disabled]="true"
/>
<label class="form-check-label" for="inlineCheckbox3">3 (disabled)</label>
</div>
Without labels
Omit the wrapping .form-check
for checkboxes and radios that have no label text.
Remember to still provide some form of label for assistive technologies (for instance, using
aria-label
).
<div>
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
id="checkboxNoLabel"
value=""
aria-label="..."
/>
</div>
<div>
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
id="checkboxNoLabel2"
value=""
aria-label="..."
/>
</div>
Checkbox - API
Import
import { MdbCheckboxModule } from 'mdb-angular-ui-kit/checkbox';
…
@NgModule ({
...
imports: [MdbCheckboxModule],
...
})
Inputs
Name | Type | Default | Description |
---|---|---|---|
checked |
Boolean | false |
Changes checkbox checked state |
disabled |
Boolean | false |
Changes checkbox disabled state |
value |
any | - |
Changes checkbox value |
Outputs
Name | Type | Description |
---|---|---|
checkboxChange |
EventEmitter<MdbCheckboxChange> | Fires when checkbox's value is changed. |
<!-- Default checkbox -->
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckDefault"
(checkboxChange)="onCheckboxChange($event)"
/>
<label class="form-check-label" for="flexCheckDefault">
Default checkbox
</label>
</div>
<!-- Checked checkbox -->
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckChecked"
[checked]="true"
(checkboxChange)="onCheckboxChange($event)"
/>
<label class="form-check-label" for="flexCheckChecked">
Checked checkbox
</label>
</div>
import { Component } from '@angular/core';
import { MdbCheckboxChange } from 'mdb-angular-ui-kit/checkbox';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent {
onCheckboxChange(event: MdbCheckboxChange): void {
console.log('checkbox changed: ', event);
}
}
Methods
Name | Description | Example |
---|---|---|
toggle
|
Manually toggle a checkbox |
checkbox.toggle()
|
<div class="form-check">
<input
mdbCheckbox
class="form-check-input"
type="checkbox"
value=""
id="flexCheckDefault"
/>
<label class="form-check-label" for="flexCheckDefault"> Default checkbox </label>
</div>
import { Component, OnInit, ViewChild } from '@angular/core';
import { MdbCheckboxDirective } from 'mdb-angular-ui-kit/checkbox';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent implements OnInit {
@ViewChild(MdbCheckboxDirective, { static: true }) checkbox!: MdbCheckboxDirective;
ngOnInit(): void {
this.checkbox.toggle();
}
}
Advanced types
MdbCheckboxChange
class MdbCheckboxChange {
element: MdbCheckboxDirective;
checked: boolean;
}