When selecting an item with Enter key, the rawEvent propagation is not canceled and if a button with submit behavior is on the page, it is clicked. https://www.screencast.com/t/sGVXL2baFj
Including this script to the page can be a temporary workaround:
var _onEnterKeyOld = Telerik.Web.UI.RadComboBox.prototype._onEnterKey;
Telerik.Web.UI.RadComboBox.prototype._onEnterKey = function (e) {
_onEnterKeyOld.call(this,e);
e.preventDefault()
}
Hello,
The issue is not replicated with the Modern supported browsers anymore so we are closing this item
Regards,
Peter Milchev
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/.