Hi,
there is an issue with horizontal scrolling – according to the scrollbar, the table looks wider than it really is and when you try to scroll to the very right it kicks you several pixels back to left.
There is a simple workaround (hope this will not cause new problems. However, it works for me.
First, delete (or comment out) this line (around line 151 in grid.base.js) causing the “kick” back:
if(scrollLeft - this.hDiv.scrollLeft > 5) {this.bDiv.scrollLeft = this.bDiv.scrollLeft - 17;}
Then, add these lines at line 464 (before 'if(chw + testdata[1]…'):
var lastHeader = $("table thead tr:first th:last", $t.grid.hDiv); lastHeader.width(lastHeader.width() + 40);
Gius
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top