ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowVirtualScrolling Option
In This Topic
    allowVirtualScrolling Option
    In This Topic
    A value that indicates whether virtual scrolling is allowed. Set allowVirtualScrolling to true when using large amounts of data to improve efficiency. Obsoleted, set the scrollingSettings.virtualization.mode property to "rows" instead.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowVirtualScrolling");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "allowVirtualScrolling", newValue);
    var allowVirtualScrolling : boolean;
    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
    8
    5
    5
    See Also