When navigating between inputs and after using Shift+Tab for focusing on a previous input the DropdOwnList popup does not close on pressing 'Enter' key.
The popup does not close. If we directly focus the DropDownList and follow steps 6-8 the popup will close.
The DropDownList should close when pressing the 'Enter' key.
Hello,
Possible workaround of the item:
open: function(e){
setTimeout(function(){
$('.k-popup').on('keydown', function(e){
if(e.keyCode == 13){
$("#products").data('kendoDropDownList').close()
}
})
})
},
A Dojo where the workaround is implemented.
Regards,
Neli
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.