MediaPlayer in Razor Pages
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a cshtml
file and a cshtml.cs
file (by design, the two files have the same name).
You can seamlessly integrate the Telerik UI MediaPlayer for ASP.NET Core in Razor Pages applications.
This article describes how to configure the MediaPlayer component in a Razor Pages scenario.
For the complete project, refer to the MediaPlayer in Razor Pages example.
Getting Started
The following example uses two widgets: a MediaPlayer and a ListView, which serves as a playlist. There are two main steps in the suggested implementation:
-
Bind the ListView to a remote
DataSource
, which provides atitle
,poster
andsource
for the video. -
In the Change event of the ListView, assign the values of the
title
,poster
andsource
properties to the MediaPlayer.
See the implementation details in the example below. For the full project with Razor Pages examples, visit our GitHub repository.
@page
@model Telerik.Examples.RazorPages.Pages.MediaPlayer.MediaPlayerPlaylistModel
@{
ViewData["Title"] = "MediaPlayerPlaylist";
}
@using Telerik.Examples.RazorPages.Models
@inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
@Html.AntiForgeryToken()
// Create a temmplate for the ListView(Playlist).
<script type="text/x-kendo-template" id="template">
<li class="k-item k-state-default" onmouseover="$(this).addClass('k-hover')"
onmouseout="$(this).removeClass('k-hover')">
<span>
<img src="#:Poster#" />
<h5>#:Title#</h5>
</span>
</li>
</script>
@(Html.Kendo().MediaPlayer()
.Name("mediaPlayer")
.AutoPlay(false)
.HtmlAttributes(new { style = "height:720px" })
)
<div class="k-list-container playlist">
@(Html.Kendo().ListView<Video>()
.Name("listView")
.TagName("ul")
.ClientTemplateId("template") // Set the template from above.
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Url("/MediaPlayer/MediaPlayerPlaylist?handler=Read").Data("forgeryToken"))
)
.Selectable(true)
.Events(e => e
.Change("onChange")
.DataBound("onDataBound"))
)
</div>
<script>
function forgeryToken() {
return kendo.antiForgeryTokens();
}
function onChange() {
var index = this.select().index();
var dataItem = this.dataSource.view()[index];
// Play the video that was selected from the playlist.
$("#mediaPlayer").data("kendoMediaPlayer").media({
title: dataItem.Title,
poster: dataItem.Poster,
source: dataItem.Source
});
}
// Select the first video when the page loads.
function onDataBound() {
this.select(this.content.children().first());
}
</script>
<style>
.k-mediaplayer {
float: left;
box-sizing: border-box;
width: 70%;
}
.playlist {
float: left;
height: 720px;
overflow: auto;
width: 30%;
}
@@media(max-width: 800px) {
.playlist,
.k-mediaplayer {
width: 100%;
}
}
.playlist ul, .playlist li {
list-style-type: none;
margin: 0;
padding: 0;
}
.playlist .k-item {
border-bottom-style: solid;
border-bottom-width: 1px;
padding: 14px 15px;
}
.playlist .k-item:last-child {
border-bottom-width: 0;
}
.playlist span {
cursor: pointer;
display: block;
overflow: hidden;
text-decoration: none;
}
.playlist span img {
border: 0 none;
display: block;
height: 56px;
object-fit: cover;
width: 100px;
float: left;
}
.playlist h5 {
display: block;
font-weight: normal;
margin: 0;
overflow: hidden;
padding-left: 10px;
text-align: left;
}
</style>