Suppose I want to use an EditForm, but I want the value binding to trigger every time the user types into the control instead of just on blur. Suppose, for the sake of an ex
For anyone wondering, you can subclass InputText to change how it renders. For example, to make it use the oninput event, create MyInputText.razor containing:
@inherits Microsoft.AspNetCore.Components.Forms.InputText
Now when you use
it will behave just like InputText except it updates on each keystroke.
SteveSanderson