Im trying to use render function to set a new cell value in other column depending on an if statement:
render: function (ui) {
if (condition) {
return "test" + ui.cellData; // this is the only line executed
ui.rowData.column1 = "test"; // this line does not work, however it works if above line is removed
}
}
Thanks in advance.