diff --git a/controllets/dataset-table-controllet/dataset-table-controllet.html b/controllets/dataset-table-controllet/dataset-table-controllet.html index b407135..fedf318 100644 --- a/controllets/dataset-table-controllet/dataset-table-controllet.html +++ b/controllets/dataset-table-controllet/dataset-table-controllet.html @@ -434,7 +434,7 @@ //2nd loop will extract each column and convert it in string comma-seprated for (var index in arrData[i]) { - row += arrData[i][index] + ','; + row += '`' + arrData[i][index] + '`,'; } row.slice(0, row.length - 1);