How can we directly access cookie on client side
How can we directly access cookie on client side without interop ?
Blazor – for loop index value as onclick parameter not working as expected, creating new variable in each iteration is required. Why?
I am creating a simple tetris game using Blazor WASM. The purpose of the following code is to render a grid of pixels as a game board and send a ROW and COL values as parameters to a function in a onclick event to log which “pixel” has been clicked.
Is this a good way to organise API calls in Blazor?
I’m writing a blazor WASM app, and found myself writing the same boilerplate code for notifying errors in API calls over and over, making my code messy and hard to read. I’m thinking of replacing that repeated code with calls to this, but I’m new to Blazor and I’m not sure whether I’m making a mistake here. Could anyone who knows more than I do have a look and let me know if you think this is a reasonable plan?
I’ve created a Scoped service, which I inject in program.cs
How to disable wasm secondary rendering of pages in blazor auto mode?
When a page is requested, server-side rendering is performed first, and then the browser displays the server-side rendered content. When the wasm download is completed, the page is rendered. If the rendering logic of the server and wasm are different, the page will flash.
Blazor: Virtualize breaks @bind with inner components, a MS Bug or I do something wrong?
I have a tree structure which has over 10.000 items.
I use Virtualize to lazy render items.
Dynamic page route parts in Blazor WASM app
In my Blazor app I want to have default pages such as:
Blazor loading page strange semicircle
Versions: Blazor WebAssembly 8.0, .NET 8.0
Quill Editor – Adding Picture not working
Added Picture functionality to Quill Editor (Blazor Serverside)
How to add auth token to automatically generated openapi code?
In my Blazor WebAssembly project i connected a external openapi api by adding a ServiceReference in VisualStudio. After that the client side code is generated automatically.
Blazor – Parent/Child Component relationship, How to reference Parent properties from Child?
All,