wijmo.grid.c1basefield Namespace > options type : width Option |
Determines the width of the column.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").c1basefield("option", "width"); // Set value var newValue; // Type: any $(".selector").c1basefield("option", "width", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [ { width: 150 } ] }); $("#element").wijgrid({ columns: [ { width: "10%" } ]});