zhaojinyu 73e6d881c9 first commit 1 nedēļu atpakaļ
..
moment 73e6d881c9 first commit 1 nedēļu atpakaļ
numbro 73e6d881c9 first commit 1 nedēļu atpakaļ
pikaday 73e6d881c9 first commit 1 nedēļu atpakaļ
zeroclipboard 73e6d881c9 first commit 1 nedēļu atpakaļ
README.md 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.css 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.css.map 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.full.css 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.full.js 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.full.min.css 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.full.min.js 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.js 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.js.map 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.min.css 73e6d881c9 first commit 1 nedēļu atpakaļ
handsontable.min.js 73e6d881c9 first commit 1 nedēļu atpakaļ

README.md

Handsontable distributions

Full distribution (recommended)

The full distribution allows you to use Handsontable by just including 2 files:

<script src="dist/handsontable.full.js"></script>
<link rel="stylesheet" media="screen" href="dist/handsontable.full.css">

(It may also require Pikaday, moment.js and numbro.js, if you're using the Datepicker for date input or numeric cell types)

handsontable.full.js and handsontable.full.css are compiled with all the needed dependencies.

Using this has the same effect as loading all the dependencies from the Bare distribution (see below).

Bare distribution

If you are a "Bob the Builder" kind of hacker, you will need to load Handsontable JS, CSS and their dependencies:

<!-- Required dependencies (as external scripts) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.5.1/pikaday.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/numbro/1.9.3/numbro.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/zeroclipboard/2.3.0/ZeroClipboard.min.js"></script>
<!-- Handsontable bare files -->
<script src="dist/handsontable.js"></script>
<link rel="stylesheet" media="screen" href="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.5.1/css/pikaday.min.css">
<link rel="stylesheet" media="screen" href="dist/handsontable.css">

handsontable.js and handsontable.css are compiled without the needed dependencies.

Custom distribution

If you want to build your own custom Handsontable package distribution check out our tool designed for this.