Choosing an architecture – advantages and disadvantages of Blazor [closed]
Closed 1 min ago.
On change event for input select isnt firing
I am having the below inputselect and all I want is a cascading ones, so if you choose a branch, the tables will be filtered. I’ve been stuck for over a week and not sure why its not working.
Sort ValidationMessageStore by display order attribute
I’m using Blazor Web App and have a component that uses EditForm and ValidationSummary. All works well, except I want to sort the error messages by the order specified in my model. Here’s my simpified-for-example model:
Blazor Navigation on a Condition
In a Blazor server application I have the following code in markup part:
In Blazor .net 8 , where do I load and store user details?
In MVC, I handled the “session_start” event to load user details and store them in a session variable, so I didn’t have to query the database with each page load.
Blazor EventCallback from a SSR parent to an InteractiveServer Child Component is Null
I have a SSR Parent component with a Child component with InteractiveServer render mode. I need this child component to be interactive so that I can bind to events like @onclick etc. I want to pass data/value back to the parent using EventCallback but this delegate is never set I guess due to different render modes, is there another way to do this?
blazor client project css stylesheet file not found
Folks, i have looked but not able to find an answer to what i imagine should be pretty straightfotward.
Blazor project template best practicies
What’s the best practicies to organize a WebAssembly (Client) project on Blazor?
Where to put the components that’s not a page componet but is part of a specific page?
Where to put the DTOs shared with the serve api?
Blazor page does not refresh after calling StateHasChanged
I use Blazor to dynamically load part of the page content. First, I use js to listen to the scroll bar and call back the loading data method in the Blazor page.
Authentication in Blazor Server Interactive
I am not able to implement a working authentication system in my Blazor .NET8 ServerInteractive application. I am quite new at web dev (I am more of a WinForm/WPF programmer)