Questions tagged [radzen]
92 questions
3
votes
1 answer
Adding a Img in a Dropdown Menu?
I'm programming in blazorframework with Radzen components a webapplication with a registration page.
I need from the user the phone number with his country code. To select the country code I have a dropdown menu with the country abbreviations ("DE |…

Obind_
- 33
- 3
3
votes
1 answer
Radzen Blazor WASM JavaScript Interop function not defined
I am using Radzen Blazor Components, which are very useful and easy to implement, with a .NET 6 Blazor WebAssembly App.
I followed the guide on the Radzen web to install components.
The issue is that I'm trying to call a JavaScript function using…

Pedro Nadal
- 31
- 2
3
votes
0 answers
Radzen DataGrid - use data annotation for column heading
I am using data annotation in my models:
[Display(Name ="First Name")]
public string? First_Name
If I use Syncfusion DataGrid, that picks up the annotation and uses it for my column headings. However, if I try to use the Radzen DataGrid, if I…

SkinnyPete63
- 597
- 1
- 5
- 20
2
votes
1 answer
How to reload Radzen DataGrid manually without refreshing page?
I created a button to reload a Radzen DataGrid on Blazor.
The datagrid is supposed to be reloaded after I click the button.
However, nothing happened when I clicked the button.
Button
Refresh()) Icon="refresh"…

AsM
- 91
- 1
- 10
2
votes
1 answer
Why is dialogue service not working in my Blazor application? Any Ideas?
I am trying to make a popup in Blazor using Radzen and I believe this is not working because of dialogue service in the code section. Everything runs properly except when I click the button nothing pops up. How can I get it to…

Zachhhh
- 21
- 4
2
votes
1 answer
Radzen Blazor Component Master Detail RadzenDataGrid How to Edit Multiple Details
I am new to Blazor Server Application. I am working on a simple order management system. I am using Radzen Blazor components. I have this master-detail blazor page where I want to edit selected orders' details. I checked the component documentation…

Cenk
- 129
- 3
- 15
2
votes
1 answer
How to set custom RadzenDropDown item to be shown on page load?
I have populated a RadzenDropDown in the code shown below,

aca
- 1,071
- 5
- 15
2
votes
1 answer
Radzen DataGrid Multiple Selection with async OnInitialized
I am working an a Blazor page where I want to make use of Radzens DataGrid.
I used the example of the DataGrid Inline Editing for editing and adding contacts of my database. And the structure overall.
This works totally fine.
I populate my list of…

SideSky
- 313
- 3
- 15
1
vote
1 answer
How to resolve Radzen Blazor error: System.IO.FileNotFoundException: Could not load file or assembly 'System.EnterpriseServices, Version=4.0.0.0
I'm getting the following error while using DataGrid on Radzen Blazor. System.IO.FileNotFoundException: Could not load file or assembly 'System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot…

bobt
- 411
- 3
- 8
1
vote
0 answers
Change Blazor Radzen Chart Annotation styling?
Can we change the styling of the fonts of RadzenSeriesAnnotation?
I tried to use style directly on RadzenSeriesAnnotation but it does not have the property matching the name stlye.
I also want to change the color of the fonts.
I am able to change…

AsM
- 91
- 1
- 10
1
vote
1 answer
Very Simple Print Button
Converting an older application into a Blazor Web Application. The older has a very basic PRINT Link as follows:
Print
Is there a way to do this same (simple and easy web page print) by using…

ExecChef
- 387
- 2
- 13
1
vote
0 answers
Make RadzenColorPicker work with Native validation
I have this form in Blazor:
@*

mz1378
- 1,957
- 4
- 20
- 40
1
vote
1 answer
How to render manually a component in Blazor?
I am trying to render manually a set of components in Blazor Web Assembly, however I am having trouble with Attributes and ChildContent.
Here's how I render manually a component:
private RenderFragment CreateComponent(List menuItems) =>…

Inês Borges
- 103
- 1
- 11
1
vote
2 answers
How to change Radzen primary color in Blazor Web Assembly?
I am working with Radzen and Bootstrap 5 on a Blazor project.
However I don't want the default colors that come with it.
I want to change Radzen primary colors so that my app has a different color theme.
So I added this to my app.css:
:root {
…

Inês Borges
- 103
- 1
- 11
1
vote
0 answers
Labels within Blazor EditForm are wrapping onto one line, rather than displaying on a distinct line
I am trying to create a Blazor EditForm on a registration page. The form looks correct apart from one rendering issue, where each Label that makes up the form is "wrapping" and starting on the line above it, as shown here:
A screenshot showing…