Great Video! One more subscriber! You make it simple with crystal clear explanations! Thank You!
@nickproudprogrammer Жыл бұрын
Thanks so much!
@toprope98 Жыл бұрын
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!
@nickproudprogrammer Жыл бұрын
Glad it was helpful!
@leviathanGT3506 ай бұрын
Hi Nick. Very clear explanations. Thank you!!
@jackhu57804 ай бұрын
Great content, thanks!
@mesutdemirci7933 Жыл бұрын
I subscribed..Thank you for the useful video.
@nickproudprogrammer Жыл бұрын
You're welcome! Thanks for the sub!
@AthelstanEngland7 ай бұрын
Thanks for this. Off topic but which component suite do you use? Any experience of Infragistics IgniteUI?
@matejbrunclik428711 ай бұрын
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?
@solutionsgroupunlimitedllc37348 ай бұрын
Same here..... Any luck in finding a solution???
@DashCam-Ravi8 ай бұрын
@@solutionsgroupunlimitedllc3734 Add these two lines at the top of your blazor page: @using Microsoft.AspNetCore.Components.Web @rendermode RenderMode.InteractiveServer
@joeyrichard89236 ай бұрын
@@solutionsgroupunlimitedllc3734 I got stuck on this for a while as well. Adding "@rendermode InteractiveServer" to the top of the page fixed it for me.
@jm-um4st Жыл бұрын
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.