New to Telerik UI for Blazor? Start a free 30-day trial
Events
Updated on Sep 10, 2026
This article showcases the available events in the Telerik Switch component:
ValueChanged
The ValueChanged event fires every time the Value parameter changes.
Handle ValueChanged
Loading ...
The event is an
EventCallback. It can be synchronous and returnvoid, or asynchronous and returnasync Task. Do not useasync void.
The lambda expression in the handler is required by the framework: https://github.com/aspnet/AspNetCore/issues/12226.
OnChange
The OnChange event fires every time the Value parameter changes. The key difference between ValueChanged is that OnChange does not prevent two-way data binding (using the @bind-Value syntax).
Handle OnChange
Loading ...
OnBlur
The OnBlur event fires when the component loses focus.
Handle the OnBlur event
Loading ...