I checked the documentation for the API and am utilizing the open method
However when opening the calendar popup this way the keyboard navigation no longer works. The only way to select a date seems to be via mouse click.
The issue is re-creatable on the demo example below
https://docs.telerik.com/kendo-ui/api/javascript/ui/datepicker/methods/open
I have found I can programatically set a kind of focus using the code
setTimeout(function () {
var ev = $.Event("keydown");
ev.keyCode = 39;
$("#FromDate").trigger(ev);
}, 100);
But after this the keyboard navigation is still not active.
Is there a way to make this work?