python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Blazor InputText with Required attribute but Disabled
So I have a model, other properties removed for brevity:
public class OutOfLimitReasonViewModel
{
[Required]
public int ReasonId { get; set; }
[Required(ErrorMessage = "Other Reason i...
Grandizer
Votes: 0
Answers: 1
Blazor <InputSelect> inside <EditForm>?
I tried everything, Googled a lot, still can't get it to work. I'm trying to use <EditForm> with <InputSelect> to update an existing object(video in my case).
I want an InputSelect with @...
Zecret
Votes: 0
Answers: 2
How does the EditForm for Blazor handle the state of the model passed to it?
So, i have a blazor EditForm and i pass a model to it.
Lets suppose i have a Person class with an Id a Name and an Age
public class Person{
public int Id { get; set; }
public string Name { g...
Ivan Ambla
Votes: 0
Answers: 2
EditForm - "Requires a Model Parameter, or an EditConext parameter, please provide one of these"
I'm working on Creating a Simple Sign Up page using Blazor and MudBlazor that I can eventually pass user information as a JSON object to my server project. Being new to Blazor I opted to use the EditF...
Davis
Votes: 0
Answers: 1