Skip to content

Commit 55aa3b1

Browse files
committed
release v2.4.10 - update github.io
1 parent 9afd8d5 commit 55aa3b1

12 files changed

+1307
-1168
lines changed

SlickGrid/MIT-LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2016 Michael Leibman, http://github.com/mleibman/slickgrid
1+
Copyright (c) 2009-2019 Michael Leibman and Ben McIntyre, http://github.com/6pac/slickgrid
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

SlickGrid/examples/example-auto-resize-columns.html

Lines changed: 0 additions & 72 deletions
This file was deleted.

SlickGrid/examples/example-plugin-sizetocontent.html

Lines changed: 0 additions & 580 deletions
This file was deleted.

SlickGrid/examples/example-size-to-content.html

Lines changed: 836 additions & 0 deletions
Large diffs are not rendered by default.

SlickGrid/examples/example8-alternative-display.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ <h2>Demonstrates:</h2>
7373
target=_blank>micro-templates</a> while still using
7474
SlickGrid's virtual rendering technology.
7575
</li>
76+
<li>
77+
Hiding column names
78+
</li>
7679
</ul>
7780
<h2>View Source:</h2>
7881
<ul>
@@ -151,7 +154,8 @@ <h2>View Source:</h2>
151154
editable: false,
152155
enableAddRow: false,
153156
enableCellNavigation: false,
154-
enableColumnReorder: false
157+
enableColumnReorder: false,
158+
showColumnHeader: false
155159
};
156160

157161
var compiled_template = tmpl("cell_template");

SlickGrid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slickgrid",
3-
"version": "2.4.9",
3+
"version": "2.4.10",
44
"description": "A lightning fast JavaScript grid/spreadsheet",
55
"main": "slick.core.js",
66
"directories": {

SlickGrid/plugins/slick.checkboxselectcolumn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888

8989
function handleSelectedRowsChanged(e, args) {
9090
var selectedRows = _grid.getSelectedRows();
91-
var lookup = {}, row, i;
91+
var lookup = {}, row, i, k;
9292
var disabledCount = 0;
9393
if (typeof _selectableOverride === 'function') {
9494
for (k = 0; k < _grid.getDataLength(); k++) {

SlickGrid/plugins/slick.draggablegrouping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@
260260
}
261261

262262
function setDroppedGroups(groupingInfo) {
263-
groupingInfos = (groupingInfo instanceof Array) ? groupingInfo : [groupingInfo];
263+
var groupingInfos = (groupingInfo instanceof Array) ? groupingInfo : [groupingInfo];
264264
dropboxPlaceholder.hide()
265265
for (var i = 0; i < groupingInfos.length; i++) {
266266
var column = $(_grid.getHeaderColumn(groupingInfos[i]));

SlickGrid/plugins/slick.rowdetailview.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
var _grid;
9595
var _gridOptions;
9696
var _gridUid;
97+
var _dataView;
9798
var _expandableOverride = null;
9899
var _self = this;
99100
var _lastRange = null;

0 commit comments

Comments
 (0)