Wijmo UI for the Web
mode Field
wijmo.grid Namespace > IScrollingSettings Interface : mode Field

Determines which scrollbars are active and if they appear automatically based on content size. Possbile values are: "none", "auto", "horizontal", "vertical", "both".

Syntax
var instance; // Type: wijmo.grid.IScrollingSettings;
var value; // Type: string
value = instance.mode;
var mode : string;
Example
// The horizontal and vertical scrollbars are active when the scrollMode is set to both.
$("#element").wijgrid({ scrollingSettings: { mode: "both" } });
Remarks
Possible values are: "none": Scrolling is not used; the staticRowIndex and staticColumnIndex values are ignored. "auto": Scrollbars appear automatically depending upon content size. "horizontal": The horizontal scrollbar is active. "vertical": The vertical scrollbar is active. "both": Both horizontal and vertical scrollbars are active.
See Also

Reference

IScrollingSettings Interface