Wijmo UI for the Web
encodeHtml Field
wijmo.grid Namespace > IColumn Interface : encodeHtml Field

A value indicating whether data values are HTML-encoded before they are displayed in a cell.

Syntax
var instance; // Type: wijmo.grid.IColumn;
var value; // Type: boolean
value = instance.encodeHtml;
var encodeHtml : boolean;
Example
$("#element").wijgrid({
    data: [
        [0, "<b>value</b>"],
        [1, "&amp;"],
    ],
    columns: [
        { headerText: "ID" }, 
        { headerText: "Value", encodeHtml: true }
    ]
});
See Also

Reference

IColumn Interface