If the ENTER key is entered in the input want it to replace [in the input] with the TAB key
[translated with google from Italian]
<InputText value="@DAT" @onkeydown="ControlloEnter" />
void ControlloEnter(KeyboardEventArgs arg)
{
if(arg.Code== "Enter")
{
// ????
}
}