For any column fields it's possible to specify which are the JavaScript functions that will run each time the grid is rendered.
The functions will return the value to replace the cell HTML, but not its value, the purpose is to be displayed a formatted value.
Every function called has in the scope access to the following parameters:
-
panel:
wijmo object,
-
row: index of the row,
-
column: index of the column,
-
cell: HTMLElement
panel.cellType returns the type of cells that should be affected (wijmo.grid.CellType.Cell, wijmo.grid.CellType.ColumnHeader, ...)
E.g.:
if (
panel.cellType === wijmo.grid.CellType.Cell) {
// Only for cells, excluding the grid header
// Complete reference: console.table(wijmo.grid.CellType); }
To get access to the value of the current cell:
var value =
panel.getCellData(
row,
column);
To get the HTML of the current cell:
var value =
cell.innerHTML;
If nothing is returned on a function it's possible to perform
other methods, for example, add classes:
wijmo.addClass(
cell, _className);