Skip to content

Commit

Permalink
DataGrid CheckBoxList filter list cast exception fixed
Browse files Browse the repository at this point in the history
Fix #1998
  • Loading branch information
enchev committed Feb 21, 2025
1 parent f16a00f commit 53717dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Radzen.Blazor/RadzenDataGridHeaderCell.razor
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ else
if (Column.Property != Column.FilterProperty && !string.IsNullOrEmpty(Column.FilterProperty))
{
query = query.SelectMany(property).Select(Column.FilterProperty).Distinct().Cast<object>().OrderBy(i => i);
propertyType = query.ElementType;
}
else
{
Expand Down

0 comments on commit 53717dc

Please sign in to comment.