I am starting a side project with blazor and planning to us MudBlazor as UI lib in dotnet 8. My biggest roadblock currently is, When we create new dotnet 8 Blazor project, it creates 2 projects in solution.
I've been fiddling with an empty .NET 9 Blazor Server project that has MudBlazor installed. I used the Mud Blazor Web App in this case so the Setup is standard without any changes. It's using Inter...
Form validation is documented well in the MudBlazor Form documentation. Here is how you do it with Blazor's built in validation mechanism which is probably the easiest for your use case:
Using MudBlazor for the first time, is it a problem to give up just about all HTML in favor of library-specific component markups? After doing lots of research, I chose MudBlazor as the Blazor component library for my new project because of its great reputation on these boards and its clean looks and design principles.
In MudBlazor, the MudGrid and MudContainer components serve different purposes, and they are not equivalent to one another. The MudContainer component is used to control the overall width and alignment of your content, while the MudGrid component is used to create responsive layouts with a 12-column grid system. Let's dive into the details of each component:
Mudblazor has two concepts for a div-like tag: MudElement and MudPaper. (They differ to other enclosing elements, like a MudContainer or MudGrid/MudItem, which are used for layout.) Many examples u...
I am loving MudBlazor, but I’m not very good at understanding which components I should embed in others. For example, does a MudContainer go inside a MudPaper, or vice versa? When should I use MudItem? Things like that. Is there any advice regarding proper usage? Secondly, I’m finding it very hard to override the styles. For example, I have a CSS file behind index called index.razor.css ...
Ive just started using the MudDataGrid in the MudBlazor componet set and Im trying to get serverside data retrieval and paging working. I found an excellent example here Mudgrid and serverside data...