Skip to content

Commit

Permalink
Merge pull request #317 from Chicago/iss235
Browse files Browse the repository at this point in the history
Fixed issue with array view deactivating when columns are selected/de…
  • Loading branch information
tomschenkjr authored Jul 31, 2017
2 parents 7627f3a + 40b532f commit f3e7459
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/ux/TableView.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ ogrid.TableView = ogrid.Class.extend({
//events to handle re-activation of popovers (for now, use the same event handler)
$t.on('page-change.bs.table', $.proxy(this._onPageChange, this));
$t.on('sort.bs.table', $.proxy(this._onPageChange, this));
$t.on('column-switch.bs.table', $.proxy(this._onPageChange, this));

//highlight of clicked row
$t.on('click', 'tbody tr', function(e) {
Expand Down Expand Up @@ -679,4 +680,4 @@ ogrid.TableView = ogrid.Class.extend({
//$t.bootstrapTable('resetView');

}
});
});

0 comments on commit f3e7459

Please sign in to comment.