mudblazor Questions
1
Solved
<MudTd Style="text-align: right" DataLabel="Severity">
<MudSelect Dense="true" T="string" Label="Severity" Variant="Variant.Filled&...
2
My model looks like this
public partial class EditModel
{
public int Id { get; set; }
...
public string Item { get; set; }
}
My SearchItems method header looks like this
protected async Task<...
Gynandromorph asked 28/3, 2022 at 22:38
1
Solved
I am using Mudblazor in my Blazor app. The following code opens a dialog :
private async Task OpenDialog()
{
var options = new DialogOptions { CloseOnEscapeKey = true };
var dialog = DialogServic...
1
I am running into an issue where the width of my MudSelect element will change based on the length of the selected item when it is within a RowEditingTemplate.
In order to demonstrate the issue, I ...
Azoic asked 10/9, 2021 at 19:39
1
Solved
I would like to know how I can implement the @ref attribute using the RenderTreeBuilder.
Following blazor code is a minimalistic example to discuss about a solution:
<MudForm @ref="_Form&qu...
Frisette asked 19/7, 2022 at 10:28
0
I am exploring Mudblazor. I created a doughnut chart and it works fine. But I need to define the colors of the slices of the pie/doughnut. I see you can have a class for the entire chart, but how d...
2
Solved
I have been trying to bind mudblazor datepicker to a DateTime property using Date.
<MudDatePicker Label="Start Date" Date="@StartDate" />
<MudTextField Label="Sele...
Culet asked 12/1, 2021 at 1:7
1
I am using MudBlazor and it provides a way to manage themes by defining the MudTheme.
e.g
MudTheme MyCustomTheme = new MudTheme()
{
Palette = new Palette()
{
Primary = Colors.Blue.Default,
Seco...
Quentin asked 22/5, 2022 at 11:4
2
Solved
I've already set the current theme in my page,
<MudThemeProvider Theme="_currentTheme" />
@code
{
private readonly MudTheme _currentTheme = new PortalTheme();
}
What is the best w...
3
Are there a way adding new icons in MudBlazor Icons. I am working a project that about textile and I need different Icons in MudBlazor. I found the Icons but dont know how to add them in MudBlazor....
Vexation asked 28/4, 2021 at 9:20
1
I'm using MudBlazor v6.07 and I know how to change the individual colors of the (UI) components using a new theme and code like this:
private MudTheme _myTheme= new MudTheme();
_myTheme.Palette.Pri...
1
Solved
Is there a possibility to change this text:
to something like 'Elemente pro Seite' for example?
I changed the InfoFormat but i can't find an option to change the left side text?
Code:
<PagerCon...
2
Solved
I am using Mudblazor in my Blazor app. I have the following code in a component inside ValidSubmit handler:
public async Task HandleValidSubmit()
{
DialogService.Show<SavingDialog>("Sav...
2
I've this MudGrid with 4 MudCard items with dynamically content and height.
<MudGrid>
<MudItem xs="12">
<MudGrid>
<MudItem xs="6">
<MudCard>
&...
4
Solved
I am trying to change the color of a row in a mudblazor table. The problem is, I can't add a functionality to change the color by the condition of the element of the row.
<MudTable Items="...
1
Solved
How is the correct way to apply styiling to a MudBlzaor component, in specific, to a table?:
Code
<MudTable>
<HeaderContent>
<MudTh> Some Random Header</MudTh>
...
</...
1
Solved
I have this table made with MudBlazor:
<MudTable ServerData="@(new Func<TableState, Task<TableData<DossierInfo>>>(GetServerData))"
RowsPerPage="@_PageSize"...
© 2022 - 2024 — McMap. All rights reserved.