OnsCheckbox Directive (ons-checkbox)

Angular directive for <ons-checkbox> component. You can use [(ngModel)] to synchronize the value of [(ngModel)] with the array of the selected values.

A checkbox element. The component will automatically render as a Material Design checkbox on Android devices. Most attributes that can be used for a normal <input type="checkbox"> element can also be used on the <ons-checkbox> element.

Tutorial

Checkboxes

Checkboxes are defined using the <ons-checkbox> element. The element works almost exactly as when you use a normal <input type="checkbox"> element.

<ons-checkbox value="something" checked></ons-checkbox>

Inner input element

For normal input elements is possible to define a <label> tab with the for attribute to link it to an input element.

Unfortunately this does not work with custom elements like <ons-label> so in order to do it we need to set the id attribute of the inner input element. This is done using the input-id attribute.

<label for="username">Username</label>
<ons-input input-id="username"></ons-input>

This work with any input in Onsen UI such as checkboxes, radios, etc.

See also

Name Type Description
input-id String Specify the “id” attribute of the inner <input> element. This is useful when using <label for="..."> elements. Optional.
Name Description
value The current value of the checkbox.
checked Whether the checkbox is checked or not.
disabled Whether the checkbox is disabled or not.
Name Description
material Displays a Material Design checkbox.
noborder iOS borderless checkbox.
Signature Description
focus() Focuses the checkbox.
blur() Removes focus from the checkbox.
focus()

Focuses the checkbox.

blur()

Removes focus from the checkbox.

Need Help?

If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.

For bug reports and feature requests use our GitHub Issues page.