peerlibrary/handsontable

Name: handsontable

Owner: PeerLibrary

Description: Handsontable is a minimalist Excel-like data grid editor for HTML & JavaScript

Created: 2015-02-26 11:10:23.0

Updated: 2015-06-03 21:20:59.0

Pushed: 2015-02-25 13:51:53.0

Homepage: http://handsontable.com/

Size: 21327

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Handsontable Build Status

Handsontable is a minimalist approach to Excel-like table editor (datagrid/data grid) in HTML & JavaScript.

Runs in IE 10+, Firefox, Chrome, Safari and Opera.

See the demos at http://handsontable.com/ or fork the example on JSFiddle.

Usage

First, include all the dependencies. All the files that you need are in the dist\ directory:

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

Then, create a new Handsontable object, passing a reference to an empty div as a first argument. After that, load some data if you wish:

 id="hot"></div>
ipt>
r data = [
["", "Kia", "Nissan", "Toyota", "Honda"],
["2008", 10, 11, 12, 13],
["2009", 20, 11, 14, 13],
["2010", 30, 15, 12, 13]


r container = document.getElementById('hot');
r hot = new Handsontable(container,
{
  data: data,
  minSpareRows: 1,
  colHeaders: true,
  contextMenu: true
});
ript>
API Reference

Check out the new wiki pages: Options, Methods and Events

Changelog

To see the list of recent changes, see Releases.

Questions

Please use the :new: Handsontable Google Group for posting general Questions.

Make sure the question was not answered before in FAQ or GitHub Issues

Reporting bugs and feature requests

Please follow this guidelines when reporting bugs and feature requests:

  1. Use GitHub Issues board to report bugs and feature requests (not my email address)
  2. Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.
  3. If possible, please add a JSFiddle link that shows the problem (start by forking this fiddle). It saves me much time.
  4. If you can't reproduce it on JSFiddle, please add a screenshot that shows the problem. JSFiddle is much more appreciated because it lets me start fixing straight away.

Thanks for understanding!

Contributing

Please see CONTRIBUTING.md

Similar projects

I want to stay motivated to keep Handsontable the best possible editable datagrid on the Web. Therefore, I invite you to check out alternative projects. I would love to receive feedback if you would like to import some of their features to Handsontable.

Contact

You can contact us at hello@handsontable.com.

License

The MIT License (see the LICENSE file for the full text)


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.