Skip to content

Commit

Permalink
Merge pull request #835 from paulsfds/master
Browse files Browse the repository at this point in the history
fixed an issue where the dataView variable was being accessed but didn't exist
  • Loading branch information
mleibman committed Dec 20, 2013
2 parents 0af2978 + e09e2f6 commit 9516f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slick.groupitemmetadataprovider.js
Expand Up @@ -80,7 +80,7 @@
var item = this.getDataItem(args.row);
if (item && item instanceof Slick.Group && $(e.target).hasClass(options.toggleCssClass)) {
var range = _grid.getRenderedRange();
dataView.setRefreshHints({
this.getData().setRefreshHints({
ignoreDiffsBefore: range.top,
ignoreDiffsAfter: range.bottom
});
Expand All @@ -104,7 +104,7 @@
var item = this.getDataItem(activeCell.row);
if (item && item instanceof Slick.Group) {
var range = _grid.getRenderedRange();
dataView.setRefreshHints({
this.getData().setRefreshHints({
ignoreDiffsBefore: range.top,
ignoreDiffsAfter: range.bottom
});
Expand Down

0 comments on commit 9516f68

Please sign in to comment.