Login page refreshes endlessly when a Render Mode is applied to the entire...
I'm upgrading my Blazor application from .NET 7 to .NET 8 and adding Login/Logout functionality using the Identity code from the sample Blazor Web App project in Visual Studio. My problem is that I...
View ArticleWhy does culture not change in Blazor Web App while running in Start without...
I'm pretty much a newbie when it comes to Blazor. I want to implement multi-language in my Blazor web app(Blazor United) in InteractiveAuto render mode.I followed this...
View ArticleThe reference is invalid or unsupported - how can I find out why?
BackgroundI am troubleshooting an issue where adding an internal nuget package (as in on a private feed) to a Blazor WASM causes a yellow warning triangle on the package reference.The build fails with...
View ArticleBlazor interactive server authentication
Using this interaction mode, I cannot authenticate in any way. The last thing I tried was sending a request via HttpClient. The cookie is generated and added in the browser, but I still remain...
View ArticleChoosing and configuring the most appropriate Blazor Fluent UI Drop-Down
I'm fairly new to Blazor and the new Fluent UI. I'm trying to create set of hierarchical drop-downs (the values in one list based on the user selection in another) based on the values from an API, but...
View ArticleMudBlazor ChipSet - selecting chips programmatically
I need to implement a "Select all" functionality whereby the user can select all chips via a button click, rather that clicking each item (which can be many!)<MudButton Variant="Variant.Outlined"...
View ArticleBlazor .Net 8 OnAfterRenderAsync
In Blazor .Net 8 I cannot implement OnAfterRenderAsync. It gives me the error "No suitable method found to override".I thought my project was corrupted so I created a new test project:Blazor Web...
View ArticleHow to Integrating Admob with blazor hybrid app
Is that posible to add Admob to Blazor Hybrid(MAUI + Blazor) application?
View ArticleBlazor Web App in .Net 8.0 with BlazorBarcodeScanner.ZXing.JS
I'm trying to create a sample Blazor Web App (in .Net 8.0) that uses the BlazorBarcodeScanner.ZXing.JS library... but it doesn't run/work.I've been following this guideHere's where I get to:...and...
View ArticleIn my Blazor server side app, I want to blur the related razor page when a...
In my Blazor server side app, I am using a "loading" spinner, when I run a method that takes few seconds time. This part is working as expected. But during the spinner is turning on the screen I want...
View ArticleBlazor Metric Measurements for Bachelorthesis
I am currently doing my Bachelorthesis on Blazor PWA vs Maui Hybrid on the Windows Plattform. I have two Tasks (Rendering and Sorting of a big List) and i want to look at time, cpu usage and ram usage...
View ArticleBlazor - Change Color of text based on condition
I have this five ratings: if (model.CIIattainedrequired2021 > model.d4) { model.CIIrating2021 = "E"; } if (model.CIIattainedrequired2021 < model.d4) { model.CIIrating2021 = "D"; } if...
View ArticleBlazor, fill 0 value binded property as empty string in input
Hi I have a question,I'm experimenting with Blazor and it has been fun but I was wondering when I bind a simple model, with one int property to a text input for example:<input type="text"...
View ArticleBlazorGoogleMaps and MarkerClustering
It seems that marker clustering is supported by this package, based on the existence of the datatype MarkerClustererOptionsI am not able to find any sample code demonstrating this, or any mention of...
View ArticleJSInterop returns function not defined
I am trying to call JS functions from C# using JS Interop. I have defined two methods and then calling using InvokeVoidAsync.The problem is in browsers like edge and firefox the there comes error...
View ArticleData Binding seems to be broken
I am working on a layout designer, think of WinForms Designer for Web-Components, and am at the very beginning of the project. I use Blazor Server App, and, as I need to generically generate controls,...
View ArticleIs it possible to reference selector from isolated css file from code-behind...
I currently have binded the class attribute of a html element to a property in my code behind, of which i have assigned a string literal to the property. The string literal is then changed whenever i...
View ArticleMudAutoComplete can only show 10 results?
I have at least a dozen items which should be populating my MudAutoComplete but I am only seeing the first 10 results. I found in the...
View ArticleBlazor - update parameter doesn't work on 2nd nested child
I'm probably doing something wrong, but I don't see what I'm missing.I have three component files (razor files) which implements each other component like so (pseudo code):Parent.razor:<Child Value...
View ArticleBlazor Net 8.0 Custom Authentication Not Working
I am trying to create my own Identity Model and Store using dapper.But I am getting this errorHere is my sample code. Note I am using my custom MyIdentityUser and custom...
View Article