With the changes in version 5.2.5 the enum filtering in simple filter mode not working anymore.
Copied the code from enum-filtering on sample-page and added the FilterMode="FilterMode.Simple"
@using System.Linq.Dynamic.Core
@using System.ComponentModel.DataAnnotations
<RadzenDataGrid Data=@employees AllowFiltering="true" AllowPaging="true" AllowSorting="true" ColumnWidth="200px" FilterMode="FilterMode.Simple">
<Columns>
<RadzenDataGridColumn Property="@nameof(Employee.ID)" Title="ID" />
<RadzenDataGridColumn Property="@nameof(Employee.Gender)" Title="Gender" />
<RadzenDataGridColumn Property="@nameof(Employee.Status)" Title="Nullable Status" />
<RadzenDataGridColumn Property="@nameof(Employee.Color)" Title="Favorite Color (Display Attribute in Filter)" />
</Columns>
</RadzenDataGrid>
@code {
IEnumerable<Employee> employees;
public class Employee
{
public int ID { get; set; }
public GenderType Gender { get; set; }
public StatusType? Status { get; set; }
public ColorType Color { get; set; }
}
public enum GenderType
{
Ms,
Mr,
Unknown,
}
public enum ColorType
{
Red,
Green,
Blue,
[Display(Description = "Almond Green")]
AlmondGreen,
[Display(Description = "Amber Gray")]
AmberGray,
[Display(Description = "Apple Blue... ")]
AppleBlueSeaGreen,
//[Display(Description = "Miss", ResourceType = typeof(ResourceFile)] localization example
[Display(Description = "Azure")]
AzureBlue,
}
public enum StatusType
{
Inactive,
Active,
}
protected override void OnInitialized()
{
employees = Enumerable.Range(0, 10).Select(i =>
new Employee
{
ID = i,
Gender = i < 3 ? GenderType.Mr : i < 6 ? GenderType.Ms : GenderType.Unknown,
Status = i < 3 ? StatusType.Active : i < 6 ? StatusType.Inactive : null,
Color = i < 2 ? ColorType.Red: i < 4 ? ColorType.AlmondGreen : i < 6 ? ColorType.AppleBlueSeaGreen : ColorType.AzureBlue,
});
}