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

Determines the culture ID to use in rendering the grid. You must include a reference to the globalize.culture file that matches the culture ID you use in order for this option to take effect. See Localization and Globalization for more information.

Default value: ""

Type: String

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "culture");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "culture", newValue);
        
});
var culture : string;
Example
// This code sets the culture to Japanese.
$("#element").wijgrid({ culture: "jp" });
Remarks
Please see Localization and Globalization in this User Guide, and https://github.com/jquery/globalize for more information.
See Also

Reference

options type
wijgrid jQuery Widget