toolbar
Gets a reference to the toolbar.
Returns
kendo.ui.ToolBar
The tool bar of the media player.
Example
<div id="mediaplayer" />
<script>
$("#mediaplayer").kendoMediaPlayer({
media: { title: "Digital Transformation: A New Way of Thinking", source: "https://www.youtube.com/watch?v=gNlya720gbk" }
});
// get a reference to the media player widget
var mediaPlayer = $("#mediaplayer").data("kendoMediaPlayer");
// get a reference to the toolbar
mediaPlayer.toolbar();
</script>