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

Determines virtual scrolling mode. Possbile values are: "none", "rows", "columns", "both".

Syntax
var instance; // Type: wijmo.grid.IVirtualizationSettings;
var value; // Type: string
value = instance.mode;
var mode : string;
Example
$("#element").wijgrid({
  scrollingSettings: {
      virtualizationSettings: {
         mode: "rows"
      }                    
  }
})
Remarks
Possible values are: "none": Virtual scrolling is not used. "rows": Rows are rendered on demand. "columns": Columns are rendered on demand. "both": Both "rows" and "columns" are rendered. Grid size must be set when the value of mode is not none.
See Also

Reference

IVirtualizationSettings Interface