wijmo.grid.wijgrid Namespace > options type : groupIndent Option |
Default value: 10
Determines the indentation of the groups, in pixels.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: number returnsValue = $(".selector").wijgrid("option", "groupIndent"); // Set value var newValue; // Type: number $(".selector").wijgrid("option", "groupIndent", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Set the groupIndent option to the number of pixels to indent data when grouping. $("#element").wijgrid({ groupIndent: 15 });