wijmo.grid.c1field Namespace > options type : textAlignment Option |
Gets or sets the text alignment of data cells. Possible values are "left", "right", "center".
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").c1field("option", "textAlignment"); // Set value var newValue; // Type: string $(".selector").c1field("option", "textAlignment", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ textAligment: "right" }]});