Questions tagged [radzen]

92 questions
0
votes
1 answer

how could convert radzen scheduler from gregorian date to shamsi date

Radzen scheduler use Gregorian date time format for showing Calender.how I could convert this format of Calender to Shamsi ?
MHD
  • 25
  • 9
0
votes
1 answer

Custom set of filters in the DataGrid

I want to show only specific set of filters in the Radzen DataGrid. For example, I want to hide "Is null" and "Is not null" from the filter operators set. Or, broader question, I want to specify my custom set of filter operators for each type. Any…
Alex34758
  • 396
  • 4
  • 14
0
votes
1 answer

Setting ChartComponent in Blazor Radzen for count of properties of each value

I have a public IEnumerable Projects; with projects having several properties, one of them being "projectStatus" a project can have one of 5 status (open, closed, in progress, deleted, new) I want to have a ChartComponent, that shows the…
Baldie47
  • 1,148
  • 5
  • 16
  • 45
0
votes
2 answers

Radzen: Bind RadzenDatePicker value to TimeOnly property

I am using the RadzenDatePicker to get time value only. I have managed to make it show only time instead of the calendar, however, I can't bind it's value which is DateTime to TimeOnly. Is there a way I can bind the RadzenDatePicker below to…
Ibrahim Timimi
  • 2,656
  • 5
  • 19
  • 31
0
votes
1 answer

Set component property in whole project (Radzen Blazor)

I'm new with Radzen Blazor and my question is how to set properties to the components globally without doing it everytime in my code? for example I want to set the property "AllowFiltering" to "true" to all my "RadzenDataGrid" controls. Thanks in…
hmzshl
  • 13
  • 6
0
votes
1 answer

Reusing Radzen DataGrid within the same layout under an if statement

I am trying to display a Radzen table on a page. There are three scenarios which output the same table with different data. Normally, I have to code the table three times, and assign different data to the corresponding table. But I want to avoid…
AsM
  • 91
  • 1
  • 10
0
votes
2 answers

@bind-Value doesn't fill the spaces when i want to modify an object

I'm using Radzen in a Blazor WebAssembly app. @page "/modificarRiesgo" @page "/modificarRiesgo/{Nombre}" @inject NavigationManager navManager @inject IModuloRiesgosServices _riesgosService

ModificarRiesgo

@if(riesgo == null){ …
0
votes
0 answers

RadzenDataFilter - Able to filter on string but filter doesn't seem to work with Lookup

I have attempted to replicate the Filtering via a lookup here - https://blazor.radzen.com/datafilter My code uses a Lookup from our Db, not content from the returned query so it's only just slightly different but I cannot get the filtering to work…
Tim Cadieux
  • 447
  • 9
  • 21
0
votes
1 answer

Can you get an IQueryable and its results from its string representation?

I've started a Blazor Web Assembly Project that makes use of Radzen components. I'm trying to create a search through my API, and I would like to use a combination of their DataGrid and new DataFilter components to do so. It looks like the best way…
0
votes
1 answer

Set "visible" property in RadzenDataGrid column based on value of the entire property of the object

I have a radzen datagrid that receives a IEnumerable and displays a set of columns
Baldie47
  • 1,148
  • 5
  • 16
  • 45
0
votes
1 answer

How to add buttons dynamically in Blazor

I want to store configured options in appsettings and add buttons to select options. I am using Radzen. OPTION1
akhilv
  • 69
  • 1
  • 6
0
votes
0 answers

BBlazor WASM Enum binding

I use Blazor WASM .NET Standard 2.1 and Radzen library for my components. The client can choose measure type from the Razden dropdown, the problem is when I want to edit this product the dropdown did not populate with the correct measure but with…
0
votes
0 answers

Printing Modal Dialog Problem - output does not appear on the print preview screen

I am trying to print (PDF) a modal dialog on my Blazor Server Application. The modal dialog opens but unfortunately, the output does not appear on the print preview window. How can I print a modal dialog? Is there something I missed, I kindly…
Cenk
  • 129
  • 3
  • 15
0
votes
1 answer

Bunit + Radzen, input does not change

So for my Blazor server application I'm trying to write some BUnit tests, to validate the working of some Blazor components. I use Radzen, since they provide a lot of functionality out of the box. What I'm currently trying to do, is to change the…
Foitn
  • 604
  • 6
  • 25
0
votes
1 answer

in Blazor I want to use the progress bar to update on saved data within a tabbed container

I am new to using Blazor. I am currently using an app called Radzen. I have a page that uses tabs to complete a checklist. there are 5 tabs in all. In these tabs there is a save button that allows a user to save as they go. I would like the progress…