Wijmo UI for the Web
Allow Virtual Scrolling

The wijgrid widget allows you to have smooth scrolling through a very large data set by setting the allowVirtualScrolling option to true. The script below sets the scrollMode option to "auto".

Script
Copy Code
<script id="scriptInit" type="text/javascript">
   require(["wijmo.wijgrid"], function () {
   $(document).ready(function () {
        $("#demo").height(300).wijgrid({
        data: (function(count) {
        var arr = [];
        for (var i = 0; i < count; i++) {
        arr.push({
        ID: i,
        Name: "Name" + i,
        Value: "Value" + i
        });
         }
          return arr;
        })(10000),
        scrollMode: "auto",
        allowVirtualScrolling: true
         });
       });
    });
</script>