I want to navigate between fields of Editform with Enter Key thats means i want Enter Key act as Tab key using c# code in blazor,I use this code but it does not work
<EditForm Model="@productDtoVM" OnValidSubmit="Save"><InputText @bind-Value="productDtoVM.itmNo" class="form-control"@onkpress="Tab"/></EditForm>this is Tab method
void Tab(KeyboardEventArgs e) { if (e.Key == "Enter") { e.Key = "Tab"; } }i tried to use @onkeyup and @onkeydown instead of @onkeypress but they not working