window.renderCell = function(result, info) { const execution = info.row.data; if(info.col.name == 'name' && result) { let html = ''; if((edition == 'max' || edition == 'ipd') && typeof(executionTypeList[execution.type]) != 'undefined') html = "" + executionTypeList[execution.type] + ""; if(html) result.unshift({html}); } return result; };