if (row.return == "Not Returned"){
return 'background-color:orange;color:blue;font-weight:bold;';
}
The thing is I paste from my php file a number 0,1,2 or I can type a string but when I would like to paste the numbers only I will need to transform them to text
----------+--------------------
| Status | Other Columns
----------+--------------------
| 0 | { other data }
| 2 | { other data }
| 0 | { other data }
......etc
transform to
----------+--------------------
| Status | Other Columns
----------+--------------------
| Not returned | { other data }
| Returned | { other data }
| Not returned | { other data }
Additionally with the possibility to change background color for each Status.
Any tips?