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

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". Obsoleted, use the scrollingSettings.freezingMode property instead.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "freezingMode");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "freezingMode", newValue);
        
});
var freezingMode : string;
Example
$("#element").wijgrid({ freezingMode: "both" });
Remarks
Possible values are: "none": The freezing handle cannot be dragged. "columns": The user can drag the vertical freezing handle to change position of the static column. "rows": The user can drag the horizontal freezing handle to change position of the static row. "both": The user can drag both horizontal and vertical freezing handles.
See Also

Reference

options type
wijgrid jQuery Widget