MediaPlayerBuilder

Methods

AutoPlay(System.Boolean)

If set to true, the component will automatically start playing the video after initializing.

Parameters

value - System.Boolean

The value for AutoPlay

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .AutoPlay(true)
               )
             

AutoPlay()

If set to true, the component will automatically start playing the video after initializing.

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .AutoPlay(true)
               )
             

AutoRepeat(System.Boolean)

If set to true, the component will start repeating the video after it has finished.

Parameters

value - System.Boolean

The value for AutoRepeat

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .AutoRepeat(true)
               )
             

AutoRepeat()

If set to true, the component will start repeating the video after it has finished.

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .AutoRepeat(true)
               )
             

ForwardSeek(System.Boolean)

If set to false the user will be prevented from seeking the video forward

Parameters

value - System.Boolean

The value for ForwardSeek

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .ForwardSeek(true)
               )
             

FullScreen(System.Boolean)

If set to true the component will enter in full-sreen mode

Parameters

value - System.Boolean

The value for FullScreen

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .FullScreen(true)
               )
             

FullScreen()

If set to true the component will enter in full-sreen mode

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .FullScreen(true)
               )
             

Messages(System.Action)

The object which holds the localization strings

Parameters

configurator - System.Action<MediaPlayerMessagesBuilder>

The configurator for the messages setting.

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Messages(m=>m.Play("Play button tooltip message."))
               )
             

Mute(System.Boolean)

If set to true the video will be played without sound

Parameters

value - System.Boolean

The value for Mute

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Mute(true)
               )
             

Mute()

If set to true the video will be played without sound

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Mute(true)
               )
             

If set to true will enable the keyboard navigation for the component

Parameters

value - System.Boolean

The value for Navigatable

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Navigatable(true)
               )
             

If set to true will enable the keyboard navigation for the component

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Navigatable(true)
               )
             

Volume(System.Double)

A value between 0 and 100 that specifies the volume of the video

Parameters

value - System.Double

The value for Volume

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                    .Name("mediaPlayer")
                    .Volume(2.5)
               )
             

Events(System.Action)

Configures the client-side events.

Parameters

configurator - System.Action<MediaPlayerEventBuilder>

The client events action.

Example

Razor
 
            @(Html.Kendo().MediaPlayer()
                  .Name("MediaPlayer")
                  .Events(events => events
                      .End("onEnd")
                  )
            )
             

Media(System.Action)

Specifies the object which holds the information about the media that will be played

Parameters

configurator - System.Action<MediaPlayerMediaBuilder>

The configurator for the Media

Example

Razor
 
               @(Html.Kendo().MediaPlayer()
                       .Name("mediaPlayer")
                       .Media(m => m
                           .Title("ProgressNEXT 2019 Highlights")
                           .Source("https://youtu.be/2OvvwWShNWo")
                       )
               )
             

ToComponent()

Returns the internal view component.

Name(System.String)

Sets the name of the component.

Parameters

componentName - System.String

The name of the component.

Example

Razor
 
            @(Html.Kendo().Grid<OrderViewModel>()
               .Name("grid")
               .Columns(columns =>
               {
                   columns.Bound(p => p.OrderID).Filterable(false);
                   columns.Bound(p => p.Freight);
               })
               .DataSource(dataSource => dataSource
                   .Ajax()
                   .PageSize(20)
                   .Read(read => read.Action("Orders_Read", "Grid"))
               )
            )
             

Deferred(System.Boolean)

Suppress initialization script rendering. Note that this options should be used in conjunction with

Parameters

deferred - System.Boolean

ModelMetadata(System.Web.Mvc.ModelMetadata)

Uses the Metadata of the Model.

Parameters

modelMetadata - System.Web.Mvc.ModelMetadata

The metadata set for the Model

HtmlAttributes(System.Object)

Sets the HTML attributes.

Parameters

attributes - System.Object

The HTML attributes.

HtmlAttributes(System.Collections.Generic.IDictionary)

Parameters

attributes - System.Collections.Generic.IDictionary<String,Object>

AsModule(System.Boolean)

Specifies whether the initialization script of the component will be rendered as a JavaScript module.

Parameters

value - System.Boolean

Render()

Renders the component.

Example

Razor
 
            @(@Page Inherits="System.Web.Mvc.ViewPage<IEnumerable<Product>>" )
            @( Html.Kendo().Grid(Model)
                .Name("grid")
                .DetailTemplate(product => {
                    )
                       Product Details:
                       <div>Product Name: @( product.ProductName )</div>
                       <div>Units In Stock: @( product.UnitsInStock )</div>
                    @(
                })
                .Render();
            )
             

ScriptAttributes(System.Object,System.Boolean)

Sets the JavaScript attributes to the initialization script.

Parameters

attributes - System.Object

The JavaScript attributes.

overrideAttributes - System.Boolean

Argument which determines whether attributes should be overriden.

ScriptAttributes(System.Collections.Generic.IDictionary,System.Boolean)

Sets the JavaScript attributes to the initialization script.

Parameters

attributes - System.Collections.Generic.IDictionary<String,Object>

The JavaScript attributes.

overrideAttributes - System.Boolean

Argument which determines whether attributes should be overriden.

ToHtmlString()

ToClientTemplate()