Merge pull request #4 from Frando/fixes

Fix table scrolling, add select event.
This commit is contained in:
Iuri Matias 2018-07-07 01:36:26 +03:00 committed by GitHub
commit 302f365ff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -182,7 +182,12 @@ ListTable.prototype.select = function(i) {
if (i <= this.childBase) {
this.setScroll(this.childBase - 1);
}
return this._select(i);
this._select(i);
// Correct scrolling for header offset.
this.scrollTo(this.selected - 1);
if (this.rows && this.selected) {
this.emit('selectrow', this.rows[this.selected], this.selected)
}
};
ListTable.prototype.render = function() {