I'm using kendo dropdown in one of my project and I'm facing an issue. In normal html select when we press space key on focus it will shows the options.I need to implement the same in kendo dropdown list I have tried keypress but its not working the code I tried is given below
$("#container").on("keypress", function (e) {
if (e.keyCode === 0 || e.keyCode === 32) {
alert("hi")
}
});
I know its rubbish but I don't have any other idea for implementing the feature . Is it possible to implement this feature in kendo dropdown if it is how can I do that