css3stickyHeaders widget: scroll to table top after filtering

This commit is contained in:
Mottie 2014-02-02 01:28:03 -06:00
parent b2746148eb
commit b1aa1b3879

View File

@ -43,6 +43,11 @@
"-webkit-transform" : finalY === 0 ? "" : "translate(0px," + finalY + "px)"
});
});
c.$table.bind('filterEnd', function() {
// scroll top of table into view
window.scrollTo(0, c.$table.position().top);
});
},
remove: function(table, c, wo){
var namespace = '.cssstickyheader';