All examples
integration
Load into Jspreadsheet Pro
Enterprise-grade spreadsheet with TabularJS import.
Jspreadsheet Pro adds advanced features like pivot tables, charts, and formula engine. Use TabularJS to import files into a Pro workbook.
html
<script src="https://cdn.jsdelivr.net/npm/jspreadsheet@12/dist/index.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jspreadsheet@12/dist/jspreadsheet.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jsuites/dist/jsuites.min.css" />
<script src="https://cdn.jsdelivr.net/npm/tabularjs/dist/index.js"></script>
<div id="workbook"></div>
<script>
async function loadFile(file) {
const result = await tabularjs(file);
jspreadsheet(document.getElementById('workbook'), {
worksheets: result.worksheets,
toolbar: true,
tabs: true
});
}
</script>Live Preview
Sample output rendered in Jspreadsheet — upload your own file to try it.
sample-output.xlsx
Drag a file anywhere on this card to replace the sample data
Learn more about Pro features at jspreadsheet.com

