Skip to content

Commit

Permalink
Fix a refresh issue with the continuous scrolling option
Browse files Browse the repository at this point in the history
  • Loading branch information
markw65 committed Nov 18, 2009
1 parent 1a2ea5b commit 6ae13fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grid.base.js
Expand Up @@ -265,7 +265,7 @@ $.fn.jqGrid = function( pin ) {
p.rowNum = rn;
}
var scrollTop = grid.scrollTop = grid.bDiv.scrollTop;
var ttop = table.position().top - scrollTop;
var ttop = Math.round(table.position().top) - scrollTop;
var tbot = ttop + table.height();
var div = rh * rn;
var page, npage, empty;
Expand Down

0 comments on commit 6ae13fa

Please sign in to comment.