Hi Consensu,
Greetings from Syncfusion support.
We checked your query. Yes, we can get the value of the numeric textbox component when pressing the tab in the KeyUp event. Kindly refer the following code.
@using Syncfusion.Blazor.Inputs;
<SfNumericTextBox TValue="int?" @bind-Value="@numericVal" @onkeyup="onKeyUp"></SfNumericTextBox>
@code{
public int? numericVal { get; set; } = 10;
public void onKeyUp(Microsoft.AspNetCore.Components.Web.KeyboardEventArgs args)
{
if(args.Key == "Tab")
{
var value = numericVal;
}
}
} |
Kindly get back to us for further assistance.
Regards,
Sevvandhi N