Virtualization

The main job of FlexGrid is to convert JavaScript data objects into DOM elements that user can interact with. In many cases, the data consists of large arrays with many thousands of items. Creating DOM elements for each of these items would make for large and slow pages.

Virtualization is the process of keeping track of visible portions of the data and rendering only those parts. This reduces the number of DOM elements in the document tree and improves performance dramatically.

FlexGrid exposes visible part of the data through the viewRange property. Whenever user resizes the screen or scrolls the grid, viewRange is updated which updates the child DOM elements of the grid.

The sample below uses the viewRange property to implement a simple type of 'infinite scrolling'. When the user scrolls to the bottom of the grid, the code adds items to the grid's itemsSource.

If you inspect the DOM, you will notice that no matter how large the itemsSource gets, the number of DOM elements remains constant. The data is 'virtualized'.

Id
Country
Date
Amount
Active
0
USA
12/31/2013
8,402.76
1
Germany
2/1/2014
8,629.54
2
UK
3/2/2014
8,137.20
3
Japan
4/3/2014
1,952.26
4
Italy
5/4/2014
4,125.68
5
Greece
6/5/2014
2,588.12
6
USA
7/6/2014
9,518.08
7
Germany
8/7/2014
3,007.37
8
UK
9/8/2014
2,745.54
9
Japan
10/9/2014
3,626.81
10
Italy
11/10/2014
2,724.04
11
Greece
12/11/2014
9,437.11
12
USA
1/12/2014
1,801.95

The grid now has 100 rows and 90 cell elements.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// This file locates: "Scripts/Lesson/C1FlexGrid/Virtualization.js".
c1.documentReady(function () {
    // start with a small data set
    var data = getData(100);
 
    var theGrid = wijmo.Control.getControl('#theGrid');
    theGrid.updatedView.addHandler(function(s, e) {
        rowCount.textContent = s.rows.length;
        cellCount.textContent = s.hostElement.querySelectorAll('.wj-cell').length;
    });
    theGrid.scrollPositionChanged.addHandler(function (s, e) {
 
        // if we're close to the bottom, add 20 items
        if (s.viewRange.bottomRow >= s.rows.length - 1) {
            addData(data, 20);
            s.collectionView.refresh();
        }
    });
    theGrid.itemsSource = data;
 
    // get an array with random data
    function getData(cnt, start) {
        var data = [];
        var countries = 'USA,Germany,UK,Japan,Italy,Greece'.split(',');
        if (!start) start = 0;
        for (var i = 0; i < cnt; i++) {
            data.push({
                id: i + start,
                country: countries[i % countries.length],
                date: new Date(2014, i % 12, i % 28),
                amount: Math.random() * 10000,
                active: i % 4 === 0
            });
        }
        return data;
    }
 
    // add random data to an array
    function addData(data, cnt) {
        var more = getData(cnt, data.length);
        for (var i = 0; i < more.length; i++) {
            data.push(more[i])
        }
    }
});
1
2
3
4
// This file locates: "Content/css/Lesson/C1FlexGrid/Virtualization.css".
#rowCount, #cellCount {
   font-weight: bold;
 }
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Web.Mvc;
 
namespace LearnMvcClient.Controllers
{
    public partial class C1FlexGridController : Controller
    {
        // GET: Virtualization
        public ActionResult Virtualization()
        {
            return View();
        }
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@model IEnumerable<FlexGridData.Sale>
 
<h1>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Title)
</h1>
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text1)
</p>
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text2)
</p>
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text3)
</p>
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text4)
</p>
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text5)
</p>
 
@Html.C1().FlexGrid().Id("theGrid").Height(250)
<p>
    @Html.Raw(Resources.C1FlexGrid.Virtualization_Text6)
</p>