From 0ff098cce6a711c2efaf64e69afb81c278d7d47f Mon Sep 17 00:00:00 2001 From: Luigi Serra Date: Thu, 21 Jul 2016 11:18:55 +0200 Subject: [PATCH] updates --- controllets/dataset-table-controllet/dataset-table-controllet.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllets/dataset-table-controllet/dataset-table-controllet.html b/controllets/dataset-table-controllet/dataset-table-controllet.html index fedf318..f379484 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].replace('"', '""') + '",'; } row.slice(0, row.length - 1); -- libgit2 0.21.4