Pageable
configurationIf set to true the ListView will display a pager. By default paging is disabled.
Can be set to a JavaScript object which represents the pager configuration.
Don't forget to set a
pageSize, no matter if paging is performed client-side or server-side. ApageSizecan be defined in thepageablesettings, or in thedataSourcesettings. If an already existing datasource instance is passed to the ListView, then thepagesizeoption should be set in the dataSource's settings and not in thepageablesettings.
pageable
Boolean|ObjectDefault: false
pageable.adaptiveMode
StringSpecifies a value whether the page sizes dropdown will be adaptive. Possible values are:
none- The current page.auto- The total number of pages.
Default: "none"
pageable.buttonCount
NumberThe maximum number of buttons displayed in the numeric pager. The pager will display ellipsis (...) if there are more pages than the specified number.
Default: 10
pageable.info
BooleanIf set to true the pager will display information about the current page and total number of data items. By default the paging information is displayed.
Default: true
pageable.input
BooleanIf set to true the pager will display an input element which allows the user to type a specific page number. By default the page input is not displayed.
Using pageable.input and pageable.numeric at the same time is not recommended.
Default: false
pageable.messages
ObjectThe text messages displayed in pager. Use this option to customize or localize the pager messages.
pageable.numeric
BooleanIf set to true the pager will display buttons for navigating to specific pages. By default those buttons are displayed.
Using pageable.numeric and pageable.input at the same time is not recommended.
Default: true
pageable.pageSize
NumberThe number of data items which will be displayed in the ListView. This setting will not work if the ListView is assigned an already existing Kendo UI DataSource instance.
pageable.pageSizes
Boolean|ArrayIf set to true the pager will display a drop-down which allows the user to pick a page size.
Can be set to an array of predefined page sizes to override the default list.
A special all value is supported. It sets the page size to the total number of records.
If a pageSize setting is provided for the data source then this value will be selected initially.
Default: false
pageable.position
StringSpecifies the position in which the ListView pager will be rendered. Valid values are "top" and "bottom" (default).
Default: "bottom"
pageable.previousNext
BooleanIf set to true the Pager will display buttons for going to the first, previous, next and last pages.
Default: true
pageable.refresh
BooleanIf set to true the pager will display the refresh button. Clicking the refresh button will refresh the ListView.
Default: false
pageable.responsive
BooleanIf set to false the pager will not be responsive.
Default: true