Nested for loop in blazor – index variable has maximum value?
I wanted to use a nested for loop in a razor file, and use the indexes of these for loops to determine which picture to show. My code looked like this:
Nested for loop in blazor – iterator variable has maximum value?
I wanted to use a nested for loop in a razor file, and use the indexes of these for loops to determine which picture to show. My code looked like this:
Blazor UI not updating with StateHasChanged
I’m having difficult with getting my UI to automatically update, I’ve bound LifetimeService.Items to the table yet its not updating when I call InvokeAsync(StateHasChanged)
How to format a text in blazor
Hi guys I’m creating a new project in blazor and I’m trying to format a text before using in in my html, the way i’m trying to do it is by using a replace, my main problem is that i can add a break line
what is the correct way to connect multiple api to 1 blazor website?
I have a blazor server web app and multiple API’s. Each of those api’s lead to a different location.
I currently change the location to where it needs to go based on a parameter that i then pass along to every function like so:
Blazor Render Tree Builder Not Rendering ChildContent
I have tried to find a solution to this issue with no success.
C# user authorization in Blazor
I have a problem with the method that authorizes users
How do I test the Generic Type in Blazor
So in the page I have:
Iterating through ChildContent in Blazor
I’m trying to achieve something like this using Blazor and MudBlazor:
Error in Define Blazor Component Parameter
[Parameter]
public object Selected
{
get => BindObject;
set
{
if (BindObject == value)
return;
BindObject = value;
SelectedChanged.InvokeAsync(BindObject);