I made a quick change to my CG.Blazor.Forms library. It's a change I need for a project I'm building that makes good use of the dynamic form generation capabilities of…
Most Blazor developers have learned how to validate a form. That code looks something like this: <EditForm Model="@MyModel"> <DataAnnotationsValidator /> <!-- enter the rest of the form here --> <button…
I figure choices are usually a good thing. For instance, I recently fleshed out my Blazor form generation library with some nice, added features. The goal, in making those changes,…
Today I'll talk a bit about a redesign I did, for my forms generation library. Even though my first design worked, I wasn't happy with the overall outcome. I felt…
I have a need for a form generator that creates a MudBlazor based edit form, at runtime, using nothing more than a POCO model reference. I looked around and found…