Skip to content

Commit 29f7b6c

Browse files
committed
DropDownBase should allow filter on SPACE while still be able to select/deselect items
1 parent a004b55 commit 29f7b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Radzen.Blazor/DropDownBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ protected virtual async System.Threading.Tasks.Task HandleKeyPress(Microsoft.Asp
699699
//
700700
}
701701
}
702-
else if (key == "Enter" || key == "NumpadEnter" || key == "Space")
702+
else if (key == "Enter" || key == "NumpadEnter" || (key == "Space" && !isFilter))
703703
{
704704
preventKeydown = true;
705705

0 commit comments

Comments
 (0)