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 NumericTextbox for Blazor:

OnBlur

The OnBlur event fires when the component loses focus.

Handle the OnBlur event

Loading ...

OnChange

The OnChange event represents a user action that confirms the current value. It fires when the user presses Enter in the input or when the input loses focus.

The event handler receives an object argument that you need to cast to the actual Value type. The argument can hold a value or be null, depending on the user input and the Value type.

The NumericTextBox is a generic component, so you must either provide a Value, or a type to the T parameter of the component.

Handle OnChange and use two-way 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.

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

ValueChanged

The ValueChanged event fires during typing.

The event handler argument can hold a value or be null, depending on the user input and the Value type.

Using this event requires one-way binding for the Value parameter and manual updating of the value in the handler. If the value is not updated, this will effectively cancel the event.

Handle ValueChanged

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