Commit 0ff098cce6a711c2efaf64e69afb81c278d7d47f
1 parent
09dff226
updates
Showing
1 changed file
with
1 additions
and
1 deletions
controllets/dataset-table-controllet/dataset-table-controllet.html
... | ... | @@ -434,7 +434,7 @@ |
434 | 434 | |
435 | 435 | //2nd loop will extract each column and convert it in string comma-seprated |
436 | 436 | for (var index in arrData[i]) { |
437 | - row += '`' + arrData[i][index] + '`,'; | |
437 | + row += '"' + arrData[i][index].replace('"', '""') + '",'; | |
438 | 438 | } |
439 | 439 | |
440 | 440 | row.slice(0, row.length - 1); | ... | ... |