wijmo.grid.wijgrid Namespace > options type : allowVirtualScrolling Option |
Default value: false
A value that indicates whether virtual scrolling is allowed. Set allowVirtualScrolling to true when using large amounts of data to improve efficiency.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: bool returnsValue = $(".selector").wijgrid("option", "allowVirtualScrolling"); // Set value var newValue; // Type: bool $(".selector").wijgrid("option", "allowVirtualScrolling", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ allowVirtualScrolling: false });