Hello, good morning.
I just realized, that when I try to filter on a RadzenDropDownList, it does nothing:
Before, when you typed, it automatically filtered the results.
The version I am using in my project is: 6.0.19
Can you tell me if anything has changed? Thank you.
enchev
February 26, 2025, 12:53pm
2
How de we tell you by looking at a screenshot? All changes are part of our release notes, the latest version also is 6.1.2. You might need to compare your implementation with our demos where there are no changes:
1 Like
Sorry, you are right.
I'll explain you better, this is my code that in previous versions has worked perfectly:
<RadzenDataGrid @ref="grid0" ColumnWidth="200px" AllowFiltering="true" FilterMode="FilterMode.Advanced" AllowPaging="true" AllowSorting="true" ShowPagingSummary="true" PageSizeOptions=@(new int[]{5, 10, 20, 30})
Data="@lmsMsPartners" RowUpdate="@GridRowUpdate" RowCreate="@GridRowCreate" TItem="CropuServerWeb.Models.CropuModels.LmsMsPartner"
AllowColumnResize="true" GridLines="Radzen.DataGridGridLines.Vertical"
AllowColumnPicking="true" style="--rz-grid-frozen-cell-background-color: #E5E7E9"
IsLoading="isLoading">
<Columns>
<RadzenDataGridColumn TItem="CropuServerWeb.Models.CropuModels.LmsMsPartner" Property="Id" Title="Id">
</RadzenDataGridColumn>
<RadzenDataGridColumn TItem="CropuServerWeb.Models.CropuModels.LmsMsPartner" Property="CmsMsCentro.Cod" Title="Cms Ms Centro">
<EditTemplate Context="lmsMsPartner_template">
<RadzenDropDownDataGrid Data="@cmsMsCentrosForIdCentro" TextProperty="Cod" ValueProperty="Id" AllowClear=true Placeholder="Choose CmsMsCentro" style="display: block; width: 100%" @bind-Value="@lmsMsPartner_template.IdCentro" Name="IdCentro" />
</EditTemplate>
</RadzenDataGridColumn>
The data is loaded correctly:
But when I try to filter, it does nothing:
Same results... I wrote the text zzzz but the RadzenDropDownDataGrid doesnΒ΄t change...
I have been checking your manuals and your examples but I cannot find the mistake.
Any idea?
Thanks a good weekend.
Hi Enchev,
I have updated to the last version 6.1.2 and everything is working again!
Great. Thanks for your fantastic work.
Regards.
You are showing a RadzenDropDownDataGrid in the screenshot but in your code you are showing RadzenDataGrid. If you are having issues filtering on a RadzenDropDownDataGrid it is most likely you are typing ABC but the data is abc. By default it is case sensitive you need to set the following property for your RadzenDropDownDataGrid.
FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
1 Like
Thanks for your answer Monty. Regards.