New to Telerik UI for BlazorStart a free 30-day trial

Events

Updated on Aug 24, 2026

This article describes the available events in the Telerik CheckBox component for Blazor.

IndeterminateChanged

The CheckBox fires its IndeterminateChanged event when the user clicks an indeterminate CheckBox and the Indeterminate parameter changes to false. From this point, only the app can restore the Indeterminate parameter value to true, which does not fire the IndeterminateChanged event.

Using the CheckBox IndeterminateChanged event

Loading ...

OnBlur

The OnBlur event fires when the CheckBox loses focus.

Using the CheckBox OnBlur event

Loading ...

OnChange

The OnChange event fires every time the Value parameter changes. The key differences with ValueChanged are:

  • OnChange does not prevent two-way data binding for the Value parameter (@bind-Value syntax).
  • ValueChanged always fires before OnChange.
  • The OnChange event argument is an object that you need to cast. The ValueChanged event argument has the same type as Value.
  • The OnChange event argument holds the current Value, while ValueChanged holds the new value that you must apply manually.

Using the CheckBox OnChange event

Loading ...

ValueChanged

The ValueChanged event fires every time the Value parameter changes. The event handler argument has the same type as the Value parameter. However, the handler always receives a true or false argument, even if the component is bound to a nullable boolean property. The new value depends on the old one as follows:

Old ValueNew Value
truefalse
falsetrue
nulltrue

Using the ValueChanged event requires one-way binding for the Value parameter and manual updating of the parameter in the handler. Compare with the OnChange event.

You can use the ValueChanged handler to set a null Value programmatically and toggle between three possible values instead of two.

Using the CheckBox ValueChanged event

Loading ...

The event is an EventCallback. It can be synchronous and return void, or asynchronous and return async Task. Do not use async void.

The lambda expression in the handler is required by the framework: https://github.com/aspnet/AspNetCore/issues/12226.

See Also