XLSX Extension
The XLSX parser is not part of the native distribution, and requires a special license.
You might experience differences from the original files due to known limitations, depending on the file format and non-implemented features. We are constantly improving based on our users' feedback, so feel free to submit any improvement requestsClick in the button below to create a local web-based spreadsheet from a XLSX file.
Source code
<html> <script src="https://jspreadsheet.com/v9/jspreadsheet.js"></script> <script src="https://jsuites.net/v5/jsuites.js"></script> <link rel="stylesheet" href="https://jspreadsheet.com/v9/jspreadsheet.css" type="text/css" /> <link rel="stylesheet" href="https://jsuites.net/v5/jsuites.css" type="text/css" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons" /> <script src="https://cdn.jsdelivr.net/npm/jszip@3.6.0/dist/jszip.min.js"></script> <script src="https://jspreadsheet.com/v9/plugins/parser.js"></script> <div id="spreadsheet"></div> <input type="file" name="file" id='file' onchange="load(event)" style='display:none'> <input type='button' value='Load XLSX file' onclick="document.getElementById('file').click()"> <script> // Set your JSS license key (The following key only works for one day) jspreadsheet.setLicense('YWRlZDYwNzRkZTkwNWJlNzE0MGYyNWM0NjI4ZTk1ZjhiMmU4ODliMTc4YWQyNWI2OTI5N2QzMzAzNDE1ZDY4YzNmOWRkZTY3ODkxZjUwYjA5ZWE3NDY3YzEyYzYxYzdmMjRjMmE5NGM4ZjczOGYzMzhhZjhhN2RhYzI5MWZlOTksZXlKdVlXMWxJam9pU25Od2NtVmhaSE5vWldWMElpd2laR0YwWlNJNk1UWTVOalE1T0RrNU5Dd2laRzl0WVdsdUlqcGJJbXB6Y0hKbFlXUnphR1ZsZEM1amIyMGlMQ0pqYjJSbGMyRnVaR0p2ZUM1cGJ5SXNJbXB6YUdWc2JDNXVaWFFpTENKamMySXVZWEJ3SWl3aWQyVmlJaXdpYkc5allXeG9iM04wSWwwc0luQnNZVzRpT2lJek5DSXNJbk5qYjNCbElqcGJJblkzSWl3aWRqZ2lMQ0oyT1NJc0luWXhNQ0lzSW1Ob1lYSjBjeUlzSW1admNtMXpJaXdpWm05eWJYVnNZU0lzSW5CaGNuTmxjaUlzSW5KbGJtUmxjaUlzSW1OdmJXMWxiblJ6SWl3aWFXMXdiM0owSWl3aVltRnlJaXdpZG1Gc2FXUmhkR2x2Ym5NaUxDSnpaV0Z5WTJnaUxDSndjbWx1ZENJc0luTm9aV1YwY3lKZExDSmtaVzF2SWpwMGNuVmxmUT09'); // Set extensions jspreadsheet.setExtensions({ parser }); // Create the spreadsheet from a local file var load = function(e) { // Parse XLSX file and create a new spreadsheet jspreadsheet.parser({ file: e.target.files[0], onload: function(config) { jspreadsheet(document.getElementById('spreadsheet'), config); }, }); } </script> </html>