Questions tagged [ant-design-blazor]

21 questions
2
votes
0 answers

Blazor. Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100] An item with the same key has already been added

I hope you can help me with this error that I get when selecting an element from a select. The first time I select the item it works without problems but once I try to change the item it shows the following error: crit:…
E-Marshall
  • 21
  • 4
2
votes
1 answer

How to trigger @onclick within RenderFragment Antd Blazor

I'm using ant design blazor (.net 5.0, antblazor 0.7.4) and try to trigger @onclick the Button render by RenderFragment: App.razor @inject NavigationManager NavigationManager
1
vote
1 answer

How to remove x-axis baseline in column chart of @ant-design/plots

I am finding difficulty in removing baseline from column chart. Here is my code and visual example. import { Column } from '@ant-design/plots'; const config = { data: [...dataArr, ...data], isStack: true, xField: 'year', …
Fahad Ali
  • 13
  • 4
1
vote
0 answers

How to Select GeneratedColumn in Blazor Ant Design Table

I don't know how can I select generated Table in Blazor Ant Design Table.
sueshin
  • 11
  • 1
1
vote
1 answer

Blazor show specific information OnRowClick (Ant Design)

I would like a table to show me only information about the clicked row.
Bimmer
  • 27
  • 6
1
vote
1 answer

Ant Design Blazor Sortable Table Column

I'm new to .Net programming. I'm doing an ant blazor project. I have a table and I want to filter and sort rows. According to documentation, it can be done by adding Filterable (for filtering) and Sortable (for sorting) attributes to the column like…
1
vote
0 answers

allow only positive integer or decimal values.in Blazor C#

I am using AntBlazor input type text using Asp.net Core and C#. My requirement is that the input text accepts values from 0 to 25 (only integers and decimal values). Example: 5 1.002 2.054 24.0009 Input text should not accept negative values.…
pavany
  • 11
  • 1
1
vote
1 answer

Ant design blazor validation on child components not displaying validation message

I am using Ant design Blazor and trying to create a child component and apply validation as usual from the parent component. Below is my code. Child component
Priyan Perera
  • 560
  • 1
  • 7
  • 20
0
votes
0 answers

Ant Blazor HTML Editor

I've created a blazor application with ant design. Hi everyone, I've created a blazor application with ant design. I want to add a wywiwyg text editor. I've used Ueditorblazor and Blazed.TextEditor but it didn't work. But when I use it in a classic…
0
votes
1 answer

How can i hide a logo from the left menu in antdesign pro layout in blazor

This is the tag When i remove the logo parameter like this: I get a broken image link like this: Broken image…
0
votes
0 answers

C# Package AntDesign for shared UI in separate Project

I have two front ends both Blazor. MyProject.Web //Blazor server MyProject.ChromeExtension //Blazor WASM To make things less verbose I would like to package my UI in another Project which then is used by both of the…
Eik
  • 1
0
votes
0 answers

how to filter options from Constants in Blazor Project

I want to filter the options based on the constants. But it keeps showing the full list of the constants. I have tried coded this way:
iamme
  • 11
  • 3
0
votes
1 answer

Understanding Blazor two-way binding

I try to create a wrapper component around the Select component from Ant Blazor ui framework. For this I read the microsoft docs about two way binding. My wrapper seems to work as intended but when I do some logging I don't understand how it works…
JohnyBro
  • 341
  • 3
  • 14
0
votes
1 answer

How to change the order of True and False in a Boolean filtered column in AntDesign/Blazor Table

I am trying to change the order that True and False come in a table using a column type of Boolean.I want False to come first. Here is the code:
Sobi
  • 5
  • 3
0
votes
0 answers

how to use nuget staticwebassets (css,js) in blazor

I create nuget about my component(.razor,.razor.cs) and some staticwebassets(.css,.js). Once packed I'm sure nuget .nupkg > staticwebassets folder contains my css and js but when project use nuget just can reference the razor,static file doesn't…
1
2