Wijmo UI for the Web
cellFormatter Field
wijmo.grid Namespace > IC1BaseFieldOptions Interface : cellFormatter Field

Function used for changing content, style and attributes of the column cells.

Syntax
var instance; // Type: wijmo.grid.IC1BaseFieldOptions;
var value; // Type: any
value = instance.cellFormatter;
var cellFormatter : any;
Example
// Add an image which URL is obtained from the "Url" data field to the column cells.
$("#demo").wijgrid({
    data: [
        { ID: 0, Url: "/images/0.jpg" },
        { ID: 1, Url: "/images/1.jpg" }
    ],
    columns: [
        {},
        {
            cellFormatter: function (args) {
                if (args.row.type & wijmo.grid.rowType.data) {
                    args.$container
                        .empty()
                        .append($("<img />")
                            .attr("src", args.row.data.Url));
                    return true;
                }
            }
        }
    ]
});
See Also

Reference

IC1BaseFieldOptions Interface