Wijmo UI for the Web
allowColMoving Option

Default value: false

A value indicating whether columns can be moved.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  bool
    returnsValue = $(".selector").wijgrid("option", "allowColMoving");
    
    // Set value
    var newValue; // Type:  bool
    $(".selector").wijgrid("option", "allowColMoving", newValue);
        
});
Javascript (Specification) 
var allowColMoving : bool;
Example
// Columns cannot be dragged and moved if this option is set to false
$("#element").wijgrid({ allowColMoving: false });
Remarks
This option must be set to true in order to drag column headers to the group area.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.