When selecting an item in the RadzenAutoComplete control, is it possible to use the main Enter key and also the NumpadEnter key? I think the code is currently only looking for "Enter" and not "NumpadEnter" in OnFilterKeyPress.
Sure! You can submit pull request!
Is this the change needed?
else if (key == "Enter" || key == "NumpadEnter" || key == "Tab")
Yes, this will do the job.