DevExtreme jQuery/JS - Overview

The CheckBox is a small box, which when selected by the end user, shows that a particular feature has been enabled or a specific option has been chosen.

View Demo

The following code adds the CheckBox to your page.

HTML
JavaScript
  • <div id="checkBoxContainer"></div>
  • $(function() {
  • $("#checkBoxContainer").dxCheckBox({
  • text: "Check me",
  • value: undefined
  • });
  • });

The CheckBox widget can have the following states: checked (the value option is true), unchecked (value is false), undetermined (value is undefined).

See Also