MudBlazor Dialog not showing .NET 8
I'm learning blazor and am working on a relatively simple blazor app with MudBlazor and .NET 8. I'm at a bit of a loss as to why this isn't working. I want to open a simple dialog, and just as the...
View ArticleHow can I implement benchmarking in a large Blazor WebAssembly application?
I'm working on a large Blazor WebAssembly application and looking for ways to implement benchmarking to measure performance (e.g., load times, navigation times, rendering times, and response times for...
View ArticleBlazor - @onchange is not a valid attribute but onchange works
Something weird is happening with my ASP.NET MVC project. I started implementing some razor components for a section of the page that has a lot of UI change with user clicks.This is a snippet inside my...
View ArticleHow to Style Blazor InputFile Component
I have a Blazor Web Assembly app on dotnet 5. I've added a Microsoft.AspNetCore.Components.Forms.InputFile control to a component. This causes a "Choose Files" button to be rendered.How can I apply a...
View ArticleHow to use UseStatusCodePagesWithReExecute in Blazor Web Application
Goal: Use app.UseStatusCodePagesWithReExecute("/StatusCode/{0}");so that whenever the user tries to navigate to a page which does not exist, this will be caught by the middleware and load a razor...
View ArticleReturn a list of JSObjectReference in Blazor using JS Interop
Is it possible to return a list of object references from JS to C#? Currently I do return a list of objects (THREE.js objects) though I am unable to deserialize it into a C# IList or array to get...
View ArticleMicrosoft Identity Web- GetAccessTokenForUserAsync Doesn't Return Custom Claim
I'm using an Azure ADB2C sign in flow that calls an Azure function to set custom claims, in my case userId, prior to the authorization ticket being set. My Blazor app consumes my token correctly and I...
View ArticleQR code reader scanner for Blazor (webassembly client) [closed]
Was looking for a framework method or other way to access the camera/webcam from blazor (client webassembly). Any suggestions?(My intent is to create a QRcode reader.)
View ArticleBlazor Server doesn't display special characters
I have a problem related to Blazor Server, where I cannot use spanish characters like "ñ, á, é, Ã, ó, ú", because they are being replaced by this char: "�".I tried with these two approaches, but I get...
View ArticleBlazor briefly shows data then "Not found" message
I have a few tables in a database and on generating the basic CRUD scaffolding in Visual Studio, I was puzzled by the fact that all the pages briefly showed the data, and then the message "Not found".I...
View ArticleStatic styles.css issues after renaming Blazor project
If I start a Blazor server from scratch. Then right-click the project and click rename.All the namespaces change(EditedProjectName.Pages) but the using statements keep the old...
View ArticleLoading config file for Blazor wasm application silently fails
I need to save a few variables in a modifiable config file. I made a json file in wwwroot and set it to "copy if newer". Confirmed, it is copied to wwwroot and is accessible via...
View Articlenull value for CustomEvent in Blazor wrapper for native JS Web Component
We are attempting to build a Blazor wrapper for our native Javascript web component library.Our input emits a custom event valueChange whenever the user changes the value of the text field (i.e.:...
View ArticleThe problem with the context when implementing authorization, registration...
Link to my repository: https://github.com/adm1nchell0/StudyHubAs part of my training, I created web applications for online courses on Blazer. When creating the app, I used the Blazer Web App template....
View ArticleBlazor Server JS Interop Not Triggering in OnAfterRenderAsync Despite JS...
I'm working on a Blazor Server 9.0 application and trying to integrate basic JavaScript interop before adding external libraries like Algolia InstantSearch. This is my current code...
View ArticleUse MudBlazor MudDataGrid ServerData to load paged data from an API
In my opinion the documentation for MudDataGrid is a bit lacking when it comes to loading paged data from a dynamic source such as an API.How do I use the ServerData attribute?How do I handle row...
View ArticleSignalR error. Invalid negotiation response received
I am developing an application on ASP.NET Core Blazor. The application has authorization via cookies. The application uses SignalR to send messages between users.The application works successfully...
View ArticleIn default blazor login template, how do I remake the page to work with...
I have the following page for external logins that is based on the default page that comes with blazor template:@using Microsoft.AspNetCore.Authentication@using...
View ArticleHow do I programmatically change a value in a Blazor button parameter?
We have an AutoComplete user entry field that will take up to 6 numbers, displaying any matching numbers as the user types. When the user sees the number in the drop-down box they want to display, they...
View ArticleI'm not able to get new data from the same SSRS report on Reporting Services...
Here is the class I call from my Report Viewer Component:public class SsrsReportService{private readonly IHttpClientFactory _httpClientFactory;public SsrsReportService(IHttpClientFactory...
View Article