skip to Main Content

Css – MudBlazor MudGrid Spacing after breakpoints

I'm trying to create a responsive Blazor page using MudBlazor and MudGrid. A basic representation of this issue is: <MudGrid> <MudItem xs="12" lg="6"> <MudTextField Value="@value" HelperText="Label 1" Variant="Variant.Outlined" /> </MudItem> <MudItem xs="12" lg="6"> <MudTextField Value="@value" HelperText="Label 2" Variant="Variant.Outlined" /> </MudItem>…

VIEW QUESTION

Asp.net – convert text as uppercase

i want to take uppercase only even if i am entering lowercase it should convert in uppercase in text field in mudblazor. <MudTextField For="@(() => AddEditItemModel.HSNSAC)" @bind-Value="AddEditItemModel.HSNSAC" Label="@_localizer["SAC"]" MaxLength="3"> </MudTextField> i tried to call through @onclick method and tried to…

VIEW QUESTION

Css – Blazor cannot set style property

cannot set the style property of an element it's always empty. When I write out StyleString it says color: red [Transposed verbatim from the comment] AT(StyleString = ShouldBeError ? "color: red" : "") </div> @StyleString <MudCard> <MudCardHeader> <CardHeaderContent> <MudText Typo="Typo.h6"…

VIEW QUESTION
Back To Top
Search