We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When scrolling near the end of an OnDemandGrid with a large dataset using Chrome 59, grid lines are incorrectly rendered.
This can be simply reproduced with dgrid/test/OnDemand_promises.html by replacing at line 68:
dgrid/test/OnDemand_promises.html
for (i = 1; i <= 200; i++) {
by
for (i = 1; i <= 800000; i++) {
Scrolling near the end make the grid to render incorrectly like in this screenshot:
This has been noticed using dgrid v1.1.0 and v1.2.0.
The text was updated successfully, but these errors were encountered:
I don't know if you're still having an issue but I added the following to my grid definition to fix a similar problem that occurred when sorting.
minRowsPerPage: 1000
This forced the grid to render a minimum of 1000 rows.
Sorry, something went wrong.
No branches or pull requests
When scrolling near the end of an OnDemandGrid with a large dataset using Chrome 59, grid lines are incorrectly rendered.
This can be simply reproduced with
dgrid/test/OnDemand_promises.html
by replacing at line 68:by
Scrolling near the end make the grid to render incorrectly like in this screenshot:
This has been noticed using dgrid v1.1.0 and v1.2.0.
The text was updated successfully, but these errors were encountered: