New to Telerik UI for ASP.NET Core? Download free 30-day trial

Keyboard Navigation

The keyboard navigation of the MediaPlayer is disabled by default.

To enable it, use the Navigatable(true) configuration.

    @(Html.Kendo().MediaPlayer()
        .Name("mediaPlayer")
        .Navigatable(true)
        /* Other configuration. */
    )
    @addTagHelper *, Kendo.Mvc

    <kendo-mediaplayer name="mediaPlayer" navigatable="true">
        <!-- Other configuration. -->
    </kendo-mediaplayer>

For a complete example, refer to the demo on using the keyboard navigation of the MediaPlayer.

The MediaPlayer supports the following keyboard shortcuts:

Shortcut Description
Enter Opens the video in the full-screen mode.
Esc Exits the full-screen mode.
Space Toggles the play and pause state.
M Toggles the mute and unmute state.
Right Arrow Seeks forward.
Left Arrow Seels backward.
Up Arrow Increases the volume.
Down Arrow Decreases the volume.
Ctrl + 1 Decreases the video quality.
Ctrl + 2 Increases the video quality.

See Also

In this article