infinite-scroll.html 1.0 KB

1234567891011121314151617181920212223
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Infinite Scroll Grid Example</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
  6. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  7. <!-- GC -->
  8. <script type="text/javascript" src="../../ext-all.js"></script>
  9. <script type="text/javascript" src="infinite-scroll.js"></script>
  10. </head>
  11. <body>
  12. <h1>Infinite Scrolling</h1>
  13. <p>Ext JS 4's brand new grid supports infinite scrolling, which enables you to load any number of records into a grid without paging.</p>
  14. <p>The new grid uses a virtualized scrolling system to handle potentially infinite data sets without any impact on client side performance.</p>
  15. <p>The code is not minified, see <a href="infinite-scroll.js">infinite-scroll.js</a></p>
  16. <p>As the edge of the rendered data scrolls towards being in view, the table is refreshed, and repositioned to maintain
  17. visual scroll position.</p>
  18. </body>
  19. </html>