Relative Content

Tag Archive for blazor

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 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 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?

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)