Wijmo UI for the Web
allowColSizing Option

Default value: false

Determines whether the column width can be increased and decreased by dragging the sizing handle, or the edge of the column header, with the mouse.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  bool
    returnsValue = $(".selector").wijgrid("option", "allowColSizing");
    
    // Set value
    var newValue; // Type:  bool
    $(".selector").wijgrid("option", "allowColSizing", newValue);
        
});
Javascript (Specification) 
var allowColSizing : bool;
Example
// The sizing handle cannot be dragged and column width cannot be changed if this option is set to false
$("#element").wijgrid({ allowColSizing: false });
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.