Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Kendo UI Cookbook

You're reading from   Kendo UI Cookbook Over 50 recipes to help you rapidly build rich and dynamic user interfaces for web and mobile platforms.

Arrow left icon
Product type Paperback
Published in Jun 2014
Publisher
ISBN-13 9781783980000
Length 250 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Sagar Ganatra Sagar Ganatra
Author Profile Icon Sagar Ganatra
Sagar Ganatra
Arrow right icon
View More author details
Toc

Table of Contents (18) Chapters Close

Kendo UI Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. The Kendo UI Application Framework FREE CHAPTER 2. The Kendo UI Grid 3. Kendo UI TreeView 4. Kendo UI Editor 5. Kendo UI PanelBar 6. Kendo UI File Uploader 7. Kendo UI Window 8. Kendo UI Mobile Framework 9. Kendo UI Mobile Widgets 10. Kendo UI DataViz 11. Kendo UI DataViz – Advance Charting Index

Building an endless scrolling list


A ListView widget can be customized to display an exhaustive list of items. There are multiple ways in which this can be done, for example, by adding a button at the bottom of the list, after clicking on which, the next set of elements would be added to the list. The other way would be to add more elements as and when the user scrolls down. This is called endless scrolling and it provides a seamless experience when the user is scrolling through an exhaustive list. In this recipe, we will see both the approaches, that is, adding a button to load more elements and creating an endless scrolling list, which is loaded when the user scrolls down.

How to do it…

In both the cases, the DataSource object must be configured so that it returns a limited number of records. While configuring DataSource for the ListView widget, specify the pageSize attribute:

dataSource: {
  transport: {
    read: '/movies/listService'
  },
  pageSize: 10
}

To add the button at the bottom...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime