Yes i receive 'undefined' value
this is my code
<script>
function itemFormatter(panel, r, c, cell) {
if (panel.columns[c].header === "Tipo") {
if (panel.cellType === wijmo.grid.CellType.Cell) {
cell.innerHTML = "<img src='"+panel.rows[r].kpath_image+"' alt='img' style='height:20px;width:20px' />";
}
}
}
</script>
Thank you