jbartula

Results 3 issues of jbartula

With MudBlazor 7 there is a problem with the UI component: System.TypeLoadException: Could not load type 'MudBlazor.MudChip' from assembly 'MudBlazor, Version=7.6.0.0, Culture=neutral, PublicKeyToken=null'. at EasyCsv.Components.CsvFileInput.b__0_2(RenderTreeBuilder __builder2) https://github.com/MudBlazor/MudBlazor/issues/8447

If I set the ValueType of a CellValue programatically like this: `sheet.Cells.SetValue(row, col, new CellValue("8007-2") { ValueType = CellValueType.Text });` the ValueType is ignored, and the Sheet treats the cell...

![Image](https://github.com/user-attachments/assets/c7ebb694-7acc-40a5-a12a-91b59d13cec3) We get this error at random, when clicking around the page or when the sheet reference is updated. This is how the sheet is rendered: ``` @if (sheet !=...