I'm using the server dropdown list in a kendo window that opens when the user does an action. I have the dropdownlist control open when the window opens by using
dropdownlist.open();
but the keyboard controls (arrow keys) aren't working for it even if I put focus on it using
$(
'.dropdown'
).find(
'.k-textbox'
)[0].focus();
Any idea how to do it? I see that this also doesn't work in your demo here http://dojo.telerik.com/OZixO.
Thanks!