Wijmo UI for the Web
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.

Syntax
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) 
var allowVirtualScrolling : bool;
Example
$("#element").wijgrid({ allowVirtualScrolling: false });
Remarks
This option is ignored if the grid uses paging, columns merging or fixed rows. This option cannot be enabled when using dynamic wijdatasource.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.