buffer-grid.html 1.2 KB

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Buffered Grid Example</title>
  6. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
  7. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  8. <!-- GC -->
  9. <script type="text/javascript" src="../../ext-all.js"></script>
  10. <script type="text/javascript" src="buffer-grid.js"></script>
  11. </head>
  12. <body>
  13. <h1>Buffered Scrolling</h1>
  14. <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>
  15. <p>The new grid uses a virtualized scrolling system to handle potentially infinite data sets without any impact on client side performance.</p>
  16. <p>This example illustrates loading of all the records up front and buffering the rendering, but sorting is not enabled. For an example illustrating dynamically loading and sorting data take a look at the <a href="infinite-scroll.html">Forum example</a>.</p>
  17. <p>The code is not minified, see <a href="buffer-grid.js">buffer-grid.js</a></p>
  18. </body>
  19. </html>