wijmo.grid.wijgrid Namespace > options type : groupAreaCaption Option |
Default value: 'Drag a column here to group by that column.'
Determines the caption of the group area.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijgrid("option", "groupAreaCaption"); // Set value var newValue; // Type: string $(".selector").wijgrid("option", "groupAreaCaption", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Set the groupAreaCaption to a string and the text appears above the grid $("#element").wijgrid({ groupAreaCaption: "Drag a column here to group by that column." });