Hi,
It seems there is a problem in RadzenDataFilter if we want to add more than one filter with the same property (used for example with nested property).
My use case is of course a lot complicated, but imagine this simple one to reproduce the problem.
I have a product, and this product can contains a list of product himself.
public class Product
{
public int Id { get; set;}
public string Name { get; set;}
public string Code { get; set;}
public List<Product> ChildrenProducts{get;set;}
}
I want to create a RadzenDataFilter on product
<RadzenDataFilterProperty Property="ChildrenProducts" FilterProperty="Name" Title="Name of child products"
FilterOperator="FilterOperator.Contains"/>
<RadzenDataFilterProperty Property="ChildrenProducts" FilterProperty="Code" Title="Code of child products"
FilterOperator="FilterOperator.Contains"/>
When I select the second filter, code, the RadzenDataFilter select the first one. It seems that we can have only one filter for the same property