wijmo.grid.wijgrid Namespace > options type : freezingMode Option |
Default value: 'none'
Determines whether the user can change position of the static column or row by dragging the vertical or horizontal freezing handle with the mouse. Possible values are: "none", "columns", "rows", "both".
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijgrid("option", "freezingMode"); // Set value var newValue; // Type: string $(".selector").wijgrid("option", "freezingMode", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ freezingMode: "both" });