New to Kendo UI for Angular? Start a free 30-day trial
Indeterminate CheckBox
The CheckBox can display an indeterminate state when the checkedState
property of the component is set to indeterminate
.
html
<kendo-checkbox checkedState="indeterminate"></kendo-checkbox>
When using the native HTML input element with kendoCheckBox
, set the indeterminate
attribute to true
.
html
<input type='checkbox' kendoCheckBox [indeterminate]="true" />
The indeterminate state is independent from the checked state of the component and displays the current checked state upon user interaction.
Change Theme
Theme
Loading ...