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

Determines whether the user can drag a sizing handle at the edge of the column header to change the width of the column.

Default value: false

Type: Boolean

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "allowColSizing");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "allowColSizing", newValue);
        
});
var allowColSizing : boolean;
Example

When this property is set to true, the sizing handle looks like this image.

// Adds a sizing handle when the mouse is at a column's edge and allows the user to drag it and resize columns.
$("#element").wijgrid({ allowColSizing: true });
Remarks
You can see this feature in action in the Column Resizing sample.
See Also

Reference

options type
wijgrid jQuery Widget