Wijmo UI for the Web
scrollingSettings Option
wijmo.grid.wijgrid Namespace > options type : scrollingSettings Option

Type: wijmo.grid.IScrollingSettings

Determines the scrolling settings.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.grid.IScrollingSettings
    returnsValue = $(".selector").wijgrid("option", "scrollingSettings");
    
    // Set value
    var newValue; // Type:  wijmo.grid.IScrollingSettings
    $(".selector").wijgrid("option", "scrollingSettings", newValue);
        
});
var scrollingSettings : IScrollingSettings;
Example
// The horizontal and vertical scrollbars are active when the scrollMode is set to both.
$("#element").wijgrid({ scrollingSettings: { mode: "both" } });
See Also

Reference

options type
wijgrid jQuery Widget