-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
70,977 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,64 @@ | ||
# handsontable-meteor | ||
Handsontable 0.12.4 in MeteorJS | ||
## Meteor Handsontable | ||
------------------------------ | ||
This package uses the latest version of Handsontable (currently @version 0.12.4) in MeteorJS. | ||
|
||
|
||
## Installation | ||
------------------------------ | ||
meteor add awsp:handsontable | ||
|
||
|
||
## Important Notes | ||
------------------------------ | ||
This package contains the latest Handsontable (ver 0.12.4). | ||
The new version of Handsontable no longer necessary requires jQuery to work. | ||
In order to introduce the latest Handsontable to Meteor, | ||
a minimum of modification was made to Handsontable in this package to fix some of the conflicts when used in Meteor | ||
|
||
|
||
The new way of initializing Handsontable is by following, | ||
|
||
```js | ||
var data = [ | ||
['', 'Maserati', 'Mazda', 'Mercedes', 'Mini', 'Mitsubishi'], | ||
['2009', 0, 2941, 4303, 354, 5814], | ||
['2010', 3, 2905, 2867, 412, 5284], | ||
['2011', 4, 2517, 4822, 552, 6127], | ||
['2012', 2, 2422, 5399, 776, 4151] | ||
]; | ||
var container = hot, document.getElementById('hot'); | ||
|
||
|
||
hot = new Handsontable(container, { | ||
data: data, | ||
minSpareRows: 1, | ||
colHeaders: true, | ||
contextMenu: true | ||
}); | ||
``` | ||
|
||
It is also possible to do in the old jQuery way. | ||
```js | ||
$("#hot3").handsontable({ | ||
data: data, | ||
minSpareRows: 1, | ||
colHeaders: true, | ||
contextMenu: true | ||
}); | ||
``` | ||
|
||
|
||
## ToDo | ||
------------------------------ | ||
- Add Tinytest | ||
|
||
|
||
|
||
## Github / Bug Reports | ||
------------------------------ | ||
|
||
|
||
|
||
## License | ||
------------------------------ | ||
MIT License |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Write your package code here! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"name": "handsontable", | ||
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs", | ||
"version": "0.12.4", | ||
"main": [ | ||
"./dist/handsontable.full.js", | ||
"./dist/handsontable.full.css" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
"components", | ||
"demo", | ||
"lib", | ||
"plugins", | ||
"node_modules", | ||
"src", | ||
"test" | ||
], | ||
"dependencies": { | ||
"zeroclipboard": ">=2.1.6" | ||
}, | ||
"devDependencies": { | ||
"chroma-js": "~0.5.6" | ||
}, | ||
"homepage": "https://github.com/handsontable/handsontable", | ||
"_release": "0.12.4", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "0.12.4", | ||
"commit": "2cfb9798c790652e7f878ee92e7d7e0a1d7dd52e" | ||
}, | ||
"_source": "git://github.com/handsontable/handsontable.git", | ||
"_target": "~0.12.4", | ||
"_originalSource": "handsontable", | ||
"_direct": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
All releases are described at https://github.com/handsontable/handsontable/releases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
handsontable.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Contributing to Handsontable | ||
|
||
Your contributions to the project are very welcome. If you would like to fix a bug or propose a new feature, you can submit a Pull Request. | ||
|
||
To help us merge your Pull Request, please make sure you follow these points: | ||
|
||
1. Please make your fix on a separate branch. This makes merging much easier. | ||
2. Do not edit files `handsontable.js`, `handsontable.css`, `handsontable.full.js`, `handsontable.full.css`. Instead, try to edit files inside the `src/` directory and then use `grunt` to make a build. More information about this on wiki page [Building](https://github.com/handsontable/handsontable/wiki/Building). | ||
3. Very important: For any change that you make, **please try to also add a test case(s)** in `tests/jasmine/spec/` or `src/3rdparty/walkontable/test/jasmine/spec/`. This helps us understand the issue and make sure that it will stay fixed forever. See [Testing](https://github.com/handsontable/handsontable/wiki/Testing) | ||
4. Describe the problem in the Pull Request description (of course you would do it, why do I mention that?) | ||
|
||
Thank you for your commitment! | ||
|
||
## Team rules | ||
|
||
The Handsontable team utilizes Git-Flow. See [How we use Git-Flow](https://github.com/handsontable/handsontable/handsontable/wiki/How-we-use-Git-Flow) |
Oops, something went wrong.