ScrollViewPageableSettingsBuilder
Methods
ARIATemplate(System.String)
Specifies a template is used to populate the aria-label for each pager element.
Parameters
value - System.String
The value that configures the ariatemplate.
Example
@(Html.Kendo().ScrollView()
.Name("scrollView")
.Pageable(p => p.ARIATemplate("aria-template"))
)
ARIATemplateId(System.String)
Specifies a template is used to populate the aria-label for each pager element.
Parameters
value - System.String
The value that configures the ariatemplate.
Example
@(Html.Kendo().ScrollView()
.Name("scrollView")
.Pageable(p => p.ARIATemplateId("aria-templateId"))
)
ARIATemplateView(System.Web.Mvc.MvcHtmlString)
Specifies a template is used to populate the aria-label for each pager element.
Parameters
value - System.Web.Mvc.MvcHtmlString
The value that configures the ariatemplate.
Example
@(Html.Kendo().ScrollView()
.Name("scrollView")
.Pageable(p => p.ARIATemplateView(new Microsoft.AspNetCore.Html.HtmlString("Viewing item #: data.Text # out of #: data.Total #")))
)
ARIATemplateHandler(System.String)
Specifies a template is used to populate the aria-label for each pager element.
Parameters
value - System.String
The value that configures the ariatemplate.
Example
@(Html.Kendo().ScrollView()
.Name("scrollView")
.Pageable(p => p.ARIATemplateHandler("aria-template-handler"))
)
ARIATemplate(Kendo.Mvc.UI.TemplateBuilder)
Specifies a template is used to populate the aria-label for each pager element.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the ariatemplate.