Skip to content

Commit ca0891d

Browse files
author
QuantLab
authored
Merge pull request #4 from quantlabio/quantlab
minor fix
2 parents 2c93fd6 + 11354f3 commit ca0891d

16 files changed

Lines changed: 103944 additions & 101919 deletions

README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# [![Build Status](https://raw.githubusercontent.com/handsontable/static-files/master/Images/Logo/Handsontable/Handsontable-logo-300-74.png)](https://handsontable.com)
2-
31
[**Handsontable**](https://handsontable.com) is a pure JavaScript/HTML5 spreadsheet component with an Excel-like appearance. It can easily integrate with any data source and comes with a variety of useful features like data binding, validation, sorting or powerful custom context menu. Actively supported by the [Handsoncode team](https://handsontable.com/team.html) team and [many contributors](https://github.com/handsontable/handsontable/graphs/contributors).
42

53
[![Build status](https://travis-ci.org/quantlabio/handsontable.svg?branch=master)](https://travis-ci.org/quantlabio/handsontable)
@@ -89,32 +87,6 @@ var hot = new Handsontable(container, {
8987
- [Roadmap](https://trello.com/b/PztR4hpj/handsontable-roadmap-2016)
9088
- [Known limitations](http://docs.handsontable.com/tutorial-known-limitations.html)
9189

92-
## Commercial version
93-
[Handsontable Pro](https://handsontable.com/pricing.html) is a commercial spreadsheet solution packed with additional, business-ready features. It comes with a dedicated support and a [forum support](https://forum.handsontable.com), where you can find the answers to common questions.
94-
95-
| Pro Feature | Description |
96-
|--------------------------- |---------------------------------------------------------------------------------------- |
97-
| Binding rows with headers | Bind rows with headers to lock the row number and always display one beside the other. |
98-
| Collapsing columns | Expand and collapse columns to better fit the content. |
99-
| Column summary | Carry out pre-defined calculations and display the results in Handsontable. |
100-
| Dropdown menu | Add a menu to the heading to enable additional operations for the columns. |
101-
| Export to file | Export data to a flat file like CSV or a string. |
102-
| Filtering | Display rows that meet your criteria and hide the rest. |
103-
| Gantt Chart | Create a simple Gantt Chart using Handsontable. |
104-
| Header tooltips | Display the header label in a tooltip. |
105-
| Hiding columns | Hide specific columns and show the rest. |
106-
| Hiding rows | Hide specific rows and show the rest. |
107-
| Nested headers | Create a nested, hierarchical structure of headers to get your data into groups. |
108-
| Trimming rows | Exclude specific rows from the rendering process so they won't be displayed. |
109-
110-
Have questions regarding the Pro version? [Contact us](https://handsontable.com/contact.html?category=general_question) or take a look at the [Frequently Asked Questions](https://handsontable.com/faq.html).
111-
112-
## Community
113-
- [Forum](https://forum.handsontable.com)
114-
- [Google group](https://groups.google.com/forum/#!forum/handsontable)
115-
- [GitHub](https://github.com/handsontable/handsontable/issues)
116-
- [Twitter](https://twitter.com/handsontable)
117-
11890
## Contributing
11991
If you would like to help us in writing the code, please take a look into [CONTRIBUTING.md](https://github.com/handsontable/handsontable/blob/master/CONTRIBUTING.md)
12092

demo/formula.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
[2010, 5, 2905, 2867, '=SUM(A4,2,3)', '=$B1'],
1616
[2011, 4, 2517, 4822, 552, 6127],
1717
[2012, '=SUM(A2:A5)', '=SUM(B5,E3)', '=A2/B2', 12, 4151],
18+
[null, null, null, null, null],
19+
['=transpose(a2:b3)', null, null, null, null],
1820
];
1921
var container = document.getElementById('xls');
2022
var hot = new Handsontable(container, {
2123
data: data,
22-
honeycombPlugin: true,
2324
rowHeaders: true,
2425
colHeaders: true,
2526
manualColumnResize: true,
@@ -28,9 +29,15 @@
2829
minCols: 32,
2930
colWidths: 100,
3031
contextMenu: true,
31-
formulas: true,
3232
outsideClickDeselects: false
3333
});
34+
Handsontable.hooks.add('afterChange', function(changes, source) {
35+
if (source === 'edit' || source === 'undo' || source === 'autofill'){
36+
changes.forEach(function(item) {
37+
console.log('oldVal:'+item[2]+',newVal:'+item[3]);
38+
});
39+
}
40+
});
3441
</script>
3542
</body>
3643
</html>

dist/@quantlab/handsontable.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/@quantlab/handsontable.full.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2424
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2525
*
26-
* Version: 0.33.7
27-
* Date: Wed Sep 06 2017 15:08:36 GMT+0800 (China Standard Time)
26+
* Version: 0.33.8
27+
* Date: Fri Sep 08 2017 13:57:44 GMT+0800 (China Standard Time)
2828
*/
2929
@charset "UTF-8";
3030

0 commit comments

Comments
 (0)