Wijmo UI for the Web
groupAreaCaption Option
wijmo.grid.wijgrid Namespace > options type : groupAreaCaption Option

Sets the text to display in the the group area.

Default value: 'Drag a column here to group by that column.'

Type: String

 

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "groupAreaCaption");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "groupAreaCaption", newValue);
        
});
var groupAreaCaption : string;
Example
// Set the groupAreaCaption to a string and the text appears above the grid
$("#element").wijgrid({ groupAreaCaption: "Drag the Region column here to group by region." });
See Also

Reference

options type
allowColMoving Option
showGroupArea Option
wijgrid jQuery Widget