jExcel - The javascript spreadsheet
Jexcel CE has been renamed to Jspreadsheet CE
, (*1)
, (*2)
Jspreadsheet CE is a lightweight Vanilla JavaScript data grid plugin to create amazing web-based interactive HTML tables, and spreadsheets compatible data grid with other spreadsheet software. You can create an online spreadsheet table from a JS array, JSON, CSV or XSLX files. You can copy from excel and paste straight to your Jspreadsheet CE spreadsheet and vice versa. It is very easy to integrate any third party JavaScript plugins to create your own custom columns, custom editors, and customize any feature into your application. Jspreadsheet CE has plenty of different input options through its native column types to cover the most common web-based application requirements. It is a complete solution for web data management. Create amazing applications with Jspreadsheet CE JavaScript spreadsheet., (*3)
, (*4)
, (*5)
, (*6)
npm install jspreadsheet-ce
, (*7)
Download ZIP, (*8)
put and use the files of dist
folder in your project (js library and css files), (*9)
See examples section for code examples of jspreadsheets with popular frameworks, (*10)
A basic example to integrate the Jspreadsheet in your website to create your first rich data grid. https://codepen.io/hchiam/pen/qBRzXKK, (*11)
Add jexcel/jspreadsheet and jsuites to your html file, (*12)
<script src="https://bossanova.uk/jspreadsheet/v4/jexcel.js"></script> <script src="https://jsuites.net/docs/v4/jsuites.js"></script> <link rel="stylesheet" href="https://jsuites.net/docs/v4/jsuites.css" type="text/css" /> <link rel="stylesheet" href="https://bossanova.uk/jspreadsheet/v4/jexcel.css" type="text/css" />
You should initialize your table based on a div container, such as:, (*13)
<div id="spreadsheet"></div>
To initialize a Jspreadsheet CE table you should run JavaScript, such as:, (*14)
var data = [ ['Jazz', 'Honda', '2019-02-12', '', true, '$ 2.000,00', '#777700'], ['Civic', 'Honda', '2018-07-11', '', true, '$ 4.000,01', '#007777'], ]; jspreadsheet(document.getElementById('spreadsheet'), { data:data, columns: [ { type: 'text', title:'Car', width:120 }, { type: 'dropdown', title:'Make', width:200, source:[ "Alfa Romeo", "Audi", "Bmw" ] }, { type: 'calendar', title:'Available', width:200 }, { type: 'image', title:'Photo', width:120 }, { type: 'checkbox', title:'Stock', width:80 }, { type: 'numeric', title:'Price', width:100, mask:'$ #.##,00', decimal:',' }, { type: 'color', width:100, render:'square', } ] });
Serve your html file and then you will get the rendered table in your browser, (*15)
, (*16)
, (*17)
% npm run build, (*18)
% npm run start, (*19)
, (*20)
React Implementation\ A full example on how to integrate Jspreadsheet CE with React., (*21)
VUE Implementation\ A full example on how to integrate Jspreadsheet CE with Vue., (*22)
Search and pagination\ Full spreadsheet example with search and pagination to bring great compatibility for those who love datatables., (*23)
Column types\ Learn more about the powerful column types. This example brings all native column types and how to create your own custom type., (*24)
Javascript dropdown\ Full examples on how to handle simple, advanced, multiple, autocomplete and conditional dropdowns. Create amazing JavaScript tables using categories and images in your dropdowns., (*25)
Javascript calendar\ Example from basic to advanced calendar usage, date and datetime picker., (*26)
Image upload\ This examples shows how to upload images to your spreadsheet., (*27)
Programmatically updates\ How to update your spreadsheet and its data by JavaScript., (*28)
Table Style\ Bring a very special touch to your applications customizing your JavaScript spreadsheet., (*29)
Events\ Learn how to handle events on Jspreadsheet CE., (*30)
Importing data\ How to import data from an external CSV, json file or XLSX., (*31)
Formulas\ Unleash the power of your tables bringing formulas and custom JavaScript methods on your Jspreadsheet spreadsheet., (*32)
Custom toolbars\ Full example on how to enable nor customize your JavaScript spreadsheet toolbar., (*33)
Column comments\ Allow comments in your table spreadsheet., (*34)
Headers\ Enabled nested headers in your spreadsheet and learn how to set or get header values., (*35)
Translations\ How to translate the default messages from Jspreadsheet., (*36)
Merged cells\ Full example on how to handle merge cells in your JavaScript tables., (*37)
Sorting columns\ Example how to sort the table by a column via JavaScript., (*38)
Lazy loading\ This example brings a very nice feature to deal with large table datasets., (*39)
, (*40)
Jexcel has been renamed to Jspreadsheet, (*41)
A special thank to the FDL - Fonds de Dotation du Libre support and sponsorship that make this version possible with so many nice features., (*42)
Jspreadsheet CE v3 is a complete rebuilt JavaScript Vanilla version. For that reason it was not possible to keep a complete compatibility with the previous version. If you are upgrading you might need to implement a few updates in your code. If you have questions, you can review the article upgrading from Jspreadsheet CE v2 or Handsontable., (*43)
The Jspreadsheet CE v3 brings lot of great new features:, (*44)
Big improvements are included, such as:, (*45)
We are glad to bring you the latest jQuery plugin version, with the following improvements:, (*46)
updateSettings
updates.
, (*47)
, (*48)
See contributing, (*49)
, (*50)
Jspreadsheet CE is released under the [MIT license]. Contact contact@jspreadsheet.com, (*51)
, (*52)
, (*53)