JSFiddle - React, Tailwind, and code Playground

by Flexmonster Pivot Table

HTML

<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<button onclick="exportTo()">
Export to CSV with quotes
</button>

<div id="pivotContainer"></div>

JavaScript

var pivot = new Flexmonster({
  container: "pivotContainer",
  componentFolder: "https://cdn.flexmonster.com/",
  toolbar: false,
  report: {
    dataSource: {
      filename: "data/data.csv"
    }
  }
});

function exportTo() {
  pivot.exportTo("csv", {
    alwaysEnclose: true
  })
}