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

Events

Updated on Aug 24, 2026

This article explains the events available in the Telerik Textbox for Blazor:

OnBlur

The OnBlur event fires when the component loses focus.

Handle the TextBox OnBlur event

Loading ...

OnChange

The OnChange event represents a user action that confirms the current value. It fires when the user presses Enter or Tab in the input, or when the input loses focus. If you need to monitor the component Value while the user is typing, then use the ValueChanged event instead.

The OnChange event is a custom event and does not interfere with bindings, so you can use it together with models and forms.

Handle the TextBox OnChange event and use two-way Value binding

Loading ...

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

ValueChanged

The ValueChanged event fires upon every change (for example, keystroke) in the input.

Handle the TextBox 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.

See Also