Events
The events exposed for the Telerik TextArea for Blazor let you react to user actions and input. This article explains the events available in the Telerik TextArea.
OnChange
The OnChange event represents a user action - confirmation of the current value. It fires when the input loses focus.
The OnChange event does not prevent you from using two-way data binding.
Handle OnChange event
The event is an
EventCallback. It can be synchronous and returnvoid, or asynchronous and returnasync Task. Do not useasync void.
ValueChanged
The ValueChanged event fires upon every change (for example, keystroke) in the input. When using the ValueChanged event you can not use two-way data binding, because the @bind-Value internally fires this event.
Handle ValueChanged event
The event is an
EventCallback. It can be synchronous and returnvoid, or asynchronous and returnasync Task. Do not useasync void.
OnBlur
The OnBlur event fires when the component loses focus.
Handle the OnBlur event