Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / grid / buffer-grid.html
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
7     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
8     <link rel="stylesheet" type="text/css" href="../shared/example.css" />
9     <script type="text/javascript" src="../../bootstrap.js"></script>
10     
11     <script type="text/javascript" src="buffer-grid.js"></script>
12 </head>
13 <body>
14     <h1>Buffered Scrolling</h1>
15     <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>
16     <p>The new grid uses a virtualized scrolling system to handle potentially infinite data sets without any impact on client side performance.</p>
17     <p>This example illustrates loading of all the records up front and buffering the rendering. Take a look at the <a href="infinite-scroll.html">Forum example</a> which illustrates dynamically loading data from a remote source.</p>
18     <p>The code is not minified, see <a href="buffer-grid.js">buffer-grid.js</a></p>
19 </body>
20 </html>