wijmo.grid.wijgrid Namespace > options type : allowColMoving Option |
Default value: false
A value indicating whether columns can be moved.
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) | |
---|---|
|
// Columns cannot be dragged and moved if this option is set to false $("#element").wijgrid({ allowColMoving: false });