Wijmo UI for the Web
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".

Syntax
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) 
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.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.