mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
DataGrid CheckBoxList filter should use null instead empty string
This commit is contained in:
@@ -267,7 +267,7 @@ else
|
||||
query = query.Take(loadDataArgs.Top.Value);
|
||||
}
|
||||
|
||||
filterValues = query;
|
||||
filterValues = query.Select("it => it == string.Empty ? null : it");
|
||||
|
||||
if (!Column.AllowCheckBoxListVirtualization)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user