Questions tagged [radzen]

92 questions
1
vote
0 answers

Managing multiple stylesheets in Blazor

Managing multiple stylesheets in Blazor Background I am a backend developer creating a Blazor WASM website. Problem I am currently developing an application which is using MudBlazor. I am happy with MudBlazor and would like to continue to use…
Jeremy May
  • 11
  • 2
1
vote
3 answers

Blazor UI not refreshing after return from dialog component

This has probably been asked before, but I'm at a loss as to what's going on here: I have a Blazor page that calls a dialog component to edit, insert, delete a record in the database. After either Deleting or Inserting a record (not editing - no…
MC9000
  • 2,076
  • 7
  • 45
  • 80
1
vote
1 answer

Clearing a selected DropDown item without bind-Value

How can we clear/reset the selected item on a Radzen DropDown? I did not use bind-Value to get the selected item. Instead, I used Change() to get the selected object. However, if I select one item on the DropDown and change the content of…
AsM
  • 91
  • 1
  • 10
1
vote
3 answers

Radzen Datagrid seems to be loading twice

I have a radzen datagrid on a Blazor Server side app, that seems to be loading twice, this is, when first opening the page all data flashes for half a second (I took a screenshot, the data is show, not a blank grid) and then it switched to loading a…
Baldie47
  • 1,148
  • 5
  • 16
  • 45
1
vote
2 answers

Insert textbox in RadzenDataGrid

I have a RadzenDataGrid that has a series of columns with data, one of this is a string that I want to represent as a textbox so the user can input data and then when clicking a "submit" execute the stored procedure that updated these fields, I…
Baldie47
  • 1,148
  • 5
  • 16
  • 45
1
vote
1 answer

Datagrid - how to change background color of a row based on a condiiton

In my Blazor Server Application, I am trying to change the background color of the datagrid row based on a condition as follows; void RowRender(RowRenderEventArgs args) { if(args.Data.Status == "Completed") …
Cenk
  • 129
  • 3
  • 15
1
vote
1 answer

Dynamically Add RadzenTextBox based on value of RadzenNumeric

I am creating an app in Blazor/C#, using mostly Radzen components. My goal is to have a user select the number of items to add, using RadzenNumeric, and then dynamically create that number of text boxes. I found a working example, that almost fits…
ExecChef
  • 387
  • 2
  • 13
1
vote
1 answer

Radzen DataGrid possible bug when adding a new row

When adding a new row, I clicked the Add New Order button, edit template opens. If I click somewhere like Vendor filter, the Add New Order button stays disabled as in the screenshot and the edit template disappears. And also after clicking Add New…
Cenk
  • 129
  • 3
  • 15
1
vote
0 answers

Radzen data grid LoadDataArgs not updating after set FilterValue manually

I'm trying to manually set FilterValue for a radzen datagrid column. var column = DataGrid.ColumnsCollection.FirstOrDefault(c => c.Property.Equals("MyProperty")); column.FilterValue = "MyValue"; StateHasChanged(); DataGrid.Reload(); Then grid…
AnC Dev
  • 141
  • 12
1
vote
0 answers

Radzen data grid dynamic data and values

I am needing to be able to generate columns and values from dynamic data. My model is a List that contains a string and another list. The string is the column name, which I can get to display correctly. The list however I have not been able to…
MaCron
  • 111
  • 6
1
vote
0 answers

Radzen Blazor Dialog not disposed after close

I open a Radzen Blazor Dialog like this:
mz1378
  • 1,957
  • 4
  • 20
  • 40
1
vote
1 answer

Dynamic type parameter for Blazor components

I want to design a common radzen data grid for multiple data types. Which means on the razor page I have common markup for radzen data grid. Record set and column definition bind to the grid dynamically. My problem is with ‘TItme’. I need something…
AnC Dev
  • 141
  • 12
1
vote
2 answers

Radzen DataGrid Custom Filtering

I am moving to Blazor and attempting to work out how to use custom filtering in Radzen's DataGrid. Here is an example of what I am looking to do (from the old app I need to migrate): As you can see, there is a filtering section above the grid. Of…
Matt
  • 6,787
  • 11
  • 65
  • 112
0
votes
0 answers

How to show hidden text in Radzen if i'm using rz-text-truncate when i'm pointing on the сut text(...)?

I want to see it like this enter image description here I'm currently working with Radzen, a tool for building web applications, and I've run into a bit of a snag. I'm using the rz-text-truncate component to handle long text by truncating it and…
0
votes
0 answers

RadzenSpeechToTextButton fails to work on dotnet on linux asp

I use razor page in asp for RadzenSpeechToTextButton. Speach recognition works fine on windows. It works fine on Windows but once I move project to linux it fails to work with on action neither any error message. It just fails to work. There is not…
jacek
  • 1
  • 2