Excellent Video - This is one of the first ones I have watched on Blazor that really dummy downed the FORM element and steps towards required fields and OnSubmit versus OnValidSubmit Thank you so much for this video!
Thank you for this great video. However I am encountering 2 problems: First problem I could resolve: After hitting Submit button, I would get an error: "The POST request does not specify which form is being submitted. To fix this, ensure elements have a @formname attribute with any unique value, or pass a FormName parameter if using ." I added FormName="InputForm" into EditForm tag. Second problem I can not resolve even after Googling: When HandleFormSubmission method is triggered, I have no data in "context" variable. It shows nulls and zeroes. Could you please help?
@@solutionsgroupunlimitedllc3734 Add these two lines at the top of your blazor page: @using Microsoft.AspNetCore.Components.Web @rendermode RenderMode.InteractiveServer
@@solutionsgroupunlimitedllc3734 I got stuck on this for a while as well. Adding "@rendermode InteractiveServer" to the top of the page fixed it for me.
Excellent Video - This is one of the first ones I have watched on Blazor that really dummy downed the FORM element and steps towards required fields and OnSubmit versus OnValidSubmit Thank you so much for this video!
Glad it was helpful!
Great Video! One more subscriber! You make it simple with crystal clear explanations! Thank You!
Thanks so much!
Hi Nick. Very clear explanations. Thank you!!
excellent Nick!
Thanks!
Great content, thanks!
I subscribed..Thank you for the useful video.
You're welcome! Thanks for the sub!
Thank you for this great video. However I am encountering 2 problems:
First problem I could resolve: After hitting Submit button, I would get an error: "The POST request does not specify which form is being submitted. To fix this, ensure elements have a @formname attribute with any unique value, or pass a FormName parameter if using ." I added FormName="InputForm" into EditForm tag.
Second problem I can not resolve even after Googling: When HandleFormSubmission method is triggered, I have no data in "context" variable. It shows nulls and zeroes. Could you please help?
Same here..... Any luck in finding a solution???
@@solutionsgroupunlimitedllc3734 Add these two lines at the top of your blazor page:
@using Microsoft.AspNetCore.Components.Web
@rendermode RenderMode.InteractiveServer
@@solutionsgroupunlimitedllc3734 I got stuck on this for a while as well. Adding "@rendermode InteractiveServer" to the top of the page fixed it for me.
Thanks for this. Off topic but which component suite do you use? Any experience of Infragistics IgniteUI?
do you really need to @ symbol before the model in the text fields? i've seen it both ways and it does not bind for me.
its not needed. the issue is else where
great video, a bit outdated though