Search code examples
blazorblazor-client-side

Blazor preventDefault on submit form


Inside my EditForm, I want to prevent that the user submits the form by pressing the Enter key.

I have tried the following, but didn't work.

<button type="submit" @onkeypress:preventDefault>Save</button>

Many thanks!


Solution

  • I have got this working by just putting 2 submit button's in the EditForm, with the first one disabled.

    <button type="submit" disabled style="display: none" aria-hidden="true"></button>
    <button type="submit">Save</button>