mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
DataGrid CheckBoxList filter mode with EF Core data source crashes application when using keyboard
Fix #1943
This commit is contained in:
@@ -744,8 +744,7 @@ namespace Radzen
|
||||
var filteredItems = (!string.IsNullOrEmpty(TextProperty) ?
|
||||
Query.Where(TextProperty, args.Key, StringFilterOperator.StartsWith, FilterCaseSensitivity.CaseInsensitive) :
|
||||
Query)
|
||||
.Cast<object>()
|
||||
.ToList();
|
||||
.Cast(Query.ElementType).ToDynamicList();
|
||||
|
||||
|
||||
if (previousKey != args.Key)
|
||||
|
||||
Reference in New Issue
Block a user