Opened 9 years ago
Closed 9 years ago
#15343 closed defect (duplicate)
dojox.grid.DataGrid and EnhancedGrid scrolling nonfunctional in Chrome 18
Reported by: | Robert Buels | Owned by: | Evan |
---|---|---|---|
Priority: | undecided | Milestone: | 1.8 |
Component: | DojoX Grid | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
In Chrome 18 on linux, scrolling the grid in dojox/grid/tests/test_data_grid.html is nonfunctional: instead of scrolling downward and staying there like it should, it scroll downward briefly and then of its own accord scrolls back to the top.
I think I isolated the bug to line 723 of dojox.grid._View.js: under this vesion of Chrome, this.scrollboxNode.scrollTop can apparently differ from this.lastTop by 1 pixel or so, suggesting that the if(top !== this.lastTop)
comparison in the next line should instead be something like if( Math.abs( top - this.lastTop ) > 1 )
Change History (1)
comment:1 Changed 9 years ago by
Milestone: | tbd → 1.8 |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Duplicate with #15611