navigatable Boolean
(default: false)
If set to true
, the option enables the keyboard navigation for the widget.
Example - keyboard navigation
<div id="mediaplayer" />
<script>
$("#mediaplayer").kendoMediaPlayer({
navigatable: true,
media: { title: "Digital Transformation: A New Way of Thinking", source: "https://www.youtube.com/watch?v=gNlya720gbk" }
});
</script>