All Questions
249 questions
0
votes
0
answers
20
views
MudBlazor MudMenu not opening on ChangePassword page in Blazor Server with ASP.NET Core Identity
I am developing a Blazor Server application based on .NET 9 that uses ASP.NET Core Identity. The identity components (like ChangePassword) are coming from the MudBlazor template. Now, for some reasone,...
0
votes
2
answers
148
views
Getting username of logged in user with Negotiate/Windows domain credentials
What I thought would be a very simple task has turned out to be the opposite of that.
I'm building a fairly simple web app with blazor and I've got windows domain credential based authentication ...
0
votes
0
answers
32
views
How to add url segment automatically using baseref?
I have a Blazor server-side app and I added the following in _Host.cshtml:
<base href="~/Sub" />
I also changed the launchsettings.json:
{
"iisSettings": {
"...
0
votes
1
answer
68
views
InputText : unable to implement CSS for InputText
There is an issue with the InputText which is that it is unable to implement CSS from the razor.css file. This works if implementing the styling directly, but if it is not working if I am placing it ...
1
vote
2
answers
84
views
Html number input handling in blazor
I am facing issue in handling max with manual input. My implementation works like: when input value is already equal to max like 13 equal to 13 and I enter more value it becomes i.e 136. I am trying ...
1
vote
1
answer
93
views
how do i load my chart using db info Blazor?
i've newly started using blazor to create a web app and was wondering how I would go around to connecting the info that i've saved into different Lists to work with ChartJS's. I'm not sure how to ...
4
votes
2
answers
82
views
What is this string inside Blazor components HTML tag
I'm new to Blazor and trying to figure out how Blazor renders components into HTML tags. If I use a simple component like this:
<InputText @bind-Value="testvalue" id="sample-textbox&...
0
votes
0
answers
145
views
Search from SQL Database via FORM on Blazor
I am trying to search data/information in the database using Form in blazor. I tried everything from the net and I can't seem to find the right choice for it. I'm using onion structure in the blazor ...
0
votes
1
answer
70
views
Blazor firing submit event even when the validations are not ready
I have a form defined as follows :
@page "/booking"
@rendermode RenderMode.InteractiveServer
@using BlazorApp1.Models
@using BlazorApp1.Services
@inject IEntityService<Customer> ...
-1
votes
1
answer
162
views
why does my blazor form not get any value from input field
i have been using blazor and i encountered an issue could not find any soulution i have been trying to add text into input fields but its not updating
@page "/"
<PageTitle>Form</...
1
vote
1
answer
48
views
CSS Class Priority in Blazor Webapp
I'm having an issue where, no matter what I try, one particular class's background-color is always the one to be displayed on the screen.
Code:
<style>
.btnClass {
border-radius:6px;
...
0
votes
0
answers
32
views
@context variable in implicit child content
I made a simple list component that works with INotifyCollectionChanged:
@using System.Collections.Specialized
@typeparam TItem
@if (Items != null && ChildComponent != null)
{
@foreach (...
0
votes
0
answers
63
views
input type="number" won't let me insert negative values (but it does when debugging)
I'm creating a generic form project, the kind of type where you insert a model and the form is generated for you. In order for this to work I now work on a generic input component, which will render ...
0
votes
0
answers
63
views
Blazor How do I place the cursor at the last character in a phone number input?
Here is a perfect example
https://blazor.syncfusion.com/demos/input-mask/forms-validation?theme=fluent
When you type into a form that has a phone number mask you can start typing in the middle, the ...
1
vote
1
answer
65
views
my fluentsearch input box is not letting me type anything
as the title states I am trying to implement a fluentsearch input box that has an oninput event that fires off the SearchEmployees method everytime the user types into the input. for reasons unknown, ...