ScrollViewMessagesSettingsBuilder

Methods

NextButtonLabel(System.String)

Defines the aria-label for the next button.

Parameters

value - System.String

The value that configures the nextbuttonlabel.

Example

Razor
 
            @(Html.Kendo().ScrollView()
                            .Name("scrollView")
                            .Messages(m => m.NextButtonLabel("Next btn"))
            )
             

PagerLabel(System.String)

Defines the aria-label for the pager.

Parameters

value - System.String

The value that configures the pagerlabel.

Example

Razor
 
            @(Html.Kendo().ScrollView()
                            .Name("scrollView")
                            .Messages(m => m.PagerLabel("Pager"))
            )
             

PreviousButtonLabel(System.String)

Defines the aria-label for the previous button.

Parameters

value - System.String

The value that configures the previousbuttonlabel.

Example

Razor
 
            @(Html.Kendo().ScrollView()
                            .Name("scrollView")
                            .Messages(m => m.PreviousButtonLabel("Previous btn"))
            )