How to get the FTP endpoint using Azure SDK in Blazor?
I am able to get the username and password, but I cannot get the HostName, which is the FTP endpoint visible on the Azure Portal.var ftpPublishingData = await...
View ArticleHow to add a RCLShared library to MAUI project without causing runtime issues
I have a .net8 class library RCLshared and a .net8 MAUI blazor hybrid project (also blazor project no issues here).Initially added RCLshared to MAUI following this:...
View ArticleBlazor Force all child components refresh
How to force all childs refresh even if no child parameters are changed by parent?Actually is there any way to call StateHasChanged() on parent and all childs refresh?
View ArticleDifferences between internal routes and external routes with / in parameter
Update: I have noticed that it's not the / which is a problem but the . so it looks like any url with . is not recognized in external routing. What's the recommended procedure?...
View ArticleHow to make a field inside the canvas that can be moved? [closed]
I want to make something like draw.io using blazor. How would it be possible to make a field like in draw.io that moves by pressing the mouse wheel?At the moment I have implemented the functionality of...
View ArticlePuzzled about UsePathBase on Blazor Server App, please make me understand it
Good day, sorry for my english I will try to explain myself as best as I can. I want to deploy in local network a small web server application I did using Blazor Net 6, I did deploy my application...
View ArticleHow does Auto Render mode work in Blazor .NET 8?
I've been experimenting with Blazor in .NET 8 and I'm trying to understand how the Auto-render mode works. From what I've learned, Blazor initially uses a WebSocket connection in Auto mode to provide...
View ArticleOnClick event is not trigger when using Two steps Page Directive in blazor...
I am working on a project(Blazor Server) where I have few components in Admin folder, If I set page directive like "/Admin/CreateCategory" the Onclick stops working on the page. Render Mode is set to...
View ArticleBlazor server bootstrap template doesn't render properly .NET 8
I have an issue after installing the template in my Blazor App.I have created a WebsiteLayout :<div class="page"><header class="reveal_header"><div class="container"><div...
View ArticleHow to render a Generic render fragment inside a modal with mudblazor
I have the following situation. I'm developing a reusable modal. I need to send different RenderFragments as the content of the modal.Here's the modal DetallesEventoModal@typeparam...
View ArticleMudNumericField not Immediate when operated
Currently, I have created a Blazor Server App .Net 8.0 project using MudBlazor, in the .razor page I have created a MudNumericField@using System.Globalization<MudNumericField Immediate="true"...
View ArticleAndroid 14 .Net8 Maui Blazor Keyboard not showing
I have upgraded a Maui Blazor Android app from .Net7 to .Net8 to support the latest API Level.After Upgrading, the app now does not seem to bring up the keyboard when pressing any of the InputText...
View ArticlebUnit - Cannot provide a value for property "objectService" on type...
I'm attempting to unit test Blazor components for UI based things (when this button is pressed, these input fields should be displayed, etc). This is how my test is constructed:[Test]public void...
View ArticleSystem.Text.Json.JsonException: The input does not contain any JSON tokens
I'm just trying to use a Http POST method in a Blazor app throughpublic async Task CreateUnit(UnitEntity unit){ await _http.PostJsonAsync<UnitEntity>("api/units", unit);}_http and myObject have...
View ArticleDrag and Drop table rows from one table to another
I am trying to implement a drag and drop function in my razor page. The razor page looks like this:@inject NavigationManager navigationManager@using System.Net.Http.Json@inject TestApi2 testApi2@inject...
View ArticleIClaimsTransformation not persisting added claims
I'm trying to add custom claims to my Blazor Server (.NET 8) application, for which I am using the IClaimsTransformation.public class MyClaimsTransformation() : IClaimsTransformation{ public async...
View ArticleHow can I filter requests in ASP.NET Core by user role before calling API
I have an ASP.NET Core Web API secured by JWT and authorization enabled. The API is being consumed with a Blazor client app. I am using services based on REFIT to call the API from the client. The...
View ArticleHow to get the html text from Blazored.TextEditor on callback function?
Error when getting the text from Blazored.TextEditor component (See at the bottom).Below is my dialog box that has a TextEditor component that I am using from...
View ArticleHow to download existing file on server with blazor wasm
Suppos I have a existing file ("export.xls") on "wwwroot/files" folder and I want to download it,I tried to use MemoryStream like: await ms.WriteAsync(resFile.Content); var res = new...
View ArticleRadzen Html Editor in DevExpress XAF Blazor: Right click passes through element
I have a DevExpress XAF Blazor project in which I integrated the HTML Text Editor component by Radzen. It generally works fine, but when I right click into the text field it doesn't open the context...
View Article