EditForm: Add method to submit form async
See original GitHub issueRight now you can only submit the EditForm by adding a button[type=submit] and clicking it. I’d like to have a way to manually invoke the form submit with a method. Something like
<EditForm Model=@model ref="myForm"> <button on click="@(() => myForm.Submit())">Click me</button> </EditForm>
Issue Analytics
- State:
- Created 4 years ago
- Reactions:10
- Comments:7 (3 by maintainers)
Top Results From Across the Web
EditForm: Add method to submit form async · Issue #10953
I'd like to have a way to manually invoke the form submit with a method. ... EditForm: Add method to submit form async...
Read more >Problem when submitting EditForm when using ...
I'm using NavigationManager int the submit function after my create or update, but the submit isnt getting hit when the edit context is ......
Read more >ASP.NET Core Blazor forms and input components
A form is defined using the Blazor framework's EditForm component. ... The Submit method is registered as a handler for the OnSubmit ...
Read more >Handling form submission
As this is a standard web control, we can provide the user with the ability to submit the form by adding an <input>...
Read more >Difference between EditForm EditContext and form method ...
Difference between EditForm EditContext and form method="post" ... One method works to log me in, and the other doesn't. What works: Login.razor -...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Alright. Thanks for the heads up 😃
Fantastic idea!!