Kendo.Mvc.UI.Fluent.ScrollViewBuilder
Defines the fluent API for configuring the Kendo UI ScrollView
Methods
ContentHeight(System.Int32)
The height of the ScrollView content.
Parameters
value System.Int32
The value that configures the contentheight.
DataSource(System.Action<Kendo.Mvc.UI.Fluent.DataSourceBuilder<System.Object>>)
Configure the DataSource of the component
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.DataSourceBuilder>
The action that configures the M:Kendo.Mvc.UI.Fluent.ScrollViewBuilder.DataSource(System.Action{Kendo.Mvc.UI.Fluent.DataSourceBuilder{System.Object}}).
ARIATemplate(System.String)
Specifies a template is used to populate an aria-live element that anounces which is the current item.
Parameters
value System.String
The value for ARIATemplate
ARIATemplateId(System.String)
Specifies a template is used to populate an aria-live element that anounces which is the current item.
Parameters
templateId System.String
The ID of the template element for ARIATemplate
AutoBind(System.Boolean)
If set to false the widget will not bind to the DataSource during initialization.
Parameters
value System.Boolean
The value for AutoBind
BounceVelocityThreshold(System.Double)
The intensity of the swipe after which the swipe will result in a bounce effect when the user scrolls to the next page. Higher values require more accelerative swipe to notice the bounce effect when a page is changed.
Parameters
value System.Double
The value for BounceVelocityThreshold
Duration(System.Double)
The duration (in milliseconds) for the ScrollView to snap to the current page after the user releases it.
Parameters
value System.Double
The value for Duration
EmptyTemplate(System.String)
The template for rendering the pages without content. By default, the ScrollView renders a blank page.
Parameters
value System.String
The value for EmptyTemplate
EmptyTemplateId(System.String)
The template for rendering the pages without content. By default, the ScrollView renders a blank page.
Parameters
templateId System.String
The ID of the template element for EmptyTemplate
EnablePager(System.Boolean)
If set to true, the ScrollView will display a pager. By default, the pager is enabled.
Parameters
value System.Boolean
The value for EnablePager
Messages(System.Action<Kendo.Mvc.UI.Fluent.ScrollViewMessagesSettingsBuilder>)
Defines the messages that are set as aria-lables for the previous and next buttons.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ScrollViewMessagesSettingsBuilder>
The configurator for the messages setting.
Navigatable(System.Boolean)
If set to true enables the built-in keyboard navigation
Parameters
value System.Boolean
The value for Navigatable
Navigatable
If set to true enables the built-in keyboard navigation
Pageable(System.Action<Kendo.Mvc.UI.Fluent.ScrollViewPageableSettingsBuilder>)
If set to true the grid will display a pager. By default paging is disabled.Can be set to a JavaScript object which represents the pager configuration.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ScrollViewPageableSettingsBuilder>
The configurator for the pageable setting.
Pageable
If set to true the grid will display a pager. By default paging is disabled.Can be set to a JavaScript object which represents the pager configuration.
Pageable(System.Boolean)
If set to true the grid will display a pager. By default paging is disabled.Can be set to a JavaScript object which represents the pager configuration.
Parameters
enabled System.Boolean
Enables or disables the pageable option.
Page(System.Double)
The initial page that will be displayed.
Parameters
value System.Double
The value for Page
Template(System.String)
The template for rendering the content of the pages. By default, the ScrollView renders a div element for every page.
Parameters
value System.String
The value for Template
TemplateId(System.String)
The template for rendering the content of the pages. By default, the ScrollView renders a div element for every page.
Parameters
templateId System.String
The ID of the template element for Template
VelocityThreshold(System.Double)
The length of the horizontal swipe after which a swipe will navigate to the next page - as opposed to snapping back to the current page. Higher values require long area swipes to navigate to the next page.
Parameters
value System.Double
The value for VelocityThreshold
ContentHeight(System.String)
The height of the ScrollView content.
Parameters
value System.String
The value for ContentHeight
Events(System.Action<Kendo.Mvc.UI.Fluent.ScrollViewEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ScrollViewEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().ScrollView()
.Name("ScrollView")
.Events(events => events
.Change("onChange")
)
)