jQuery UI Widgets › Forums › Grid › JqxGrid selection problem
Tagged: Lose Track of Row, mouse wheel, scroll
This topic contains 22 replies, has 11 voices, and was last updated by Hristo 4 years ago.
-
Author
-
Hello
I use jqwidgets-6.1.0
When I use jqxGrid, sometimes it happend.
When i roll over the red sequre, grid select on the over area
My english is poor so i attached the image.
why this problem happen ?
if I upgrade JQWidgets -> do I solve the problem ?
Thank you.
Hi
I also have same problem.
this happen only in google chrome new version (86.0.4240.75 Official build) and also in Microsoft Edge (Chromium base).
Mozilla Firefox works fine.this error reported from 3 days ago, and my chrome wasn’t up to date, and there is no problem.
but after update to new version on chrome, it appears !!I hope that’s enough.
JqWidgets sample pageHello devsim,
Thank you for the feedback.
It is a known issue and I think it could be fixed in the next release.Best Regards,
Hristo HristovjQWidgets team
https://www.jqwidgets.comI’ve also same issue and I’m using jQWidgets v10.0.2 (2020-22-July).
Please do let us know when this issue resolve.
Hi
We have the same prblem on our prodction site. could you let us know if there is there is a temp fix we can do to get around this problem pls?
and when is the next release? we need this problem fixed ASAP
cheers
Hello,
Thank you for your interest.
It is a still valid work item.
However, we cannot engage with a deadline.
Because we work on different tasks with a different priority.
Thank you for your understanding.Best Regards,
Hristo HristovjQWidgets team
https://www.jqwidgets.comHi
Our application is a data intensive application heavily rely on your grid.
We find that the Grid will correct itself after “refresh” method called. but it does cause a flickering and line movements in a scrolling grid, which is not very user friendly.
Is there a temp work around you can give us so we can make our application functional ASPA while we are waiting for your release? or is there a better way to call refresh method without a flickering or line movements?
cheers
DiHi
This is Google Chrome fault in applying Css top.
The hole scenario is Google Chrome is changing the property top of table but didn’t apply it,
but if you inspect that table in dev tools and do any change ( any changes) on it, chrome finally wake up and apply it 😀Here is the temporary solution :
In jqxgrid.js file edit following rows:in the method
_rendervisualrows: function () {try to find this row
for (var n = 0; n < U && ab < U; n++) {before that line add these :
var userAgent = null; var version = null; if ($.jqx.browser.chrome) { userAgent = navigator.userAgent.toLowerCase(); userAgent = userAgent.substring(userAgent.indexOf('chrome/') + 7); version = userAgent.substring(0, userAgent.indexOf('.')); if (version > 85) $('#' + this.table[0].id).css("position", 'static'); }
and after this line
this.table[0].style.top = -m + “px”;add these
if ($.jqx.browser.chrome && version > 85)
setTimeout(function () { $(“#contenttabledgVoucher”).css(“position”, ‘relative’); }, 0);Have fun.
Hi again
this one is better and shortest.
Find this line in jqxgrid.js:
_rendervisualrows: function () {And add these to the end of the method:
if ($.jqx.browser.chrome) { var top = parseInt($("#" + this.table[0].id).css("top")); top = (top + 0.01) + "px"; document.getElementById(this.table[0].id).style.setProperty("top", top); }
Please le me know it works or not.
Stay coolDear friends,
We verified the problem about Google Chrome’s latest versions. The fix will be available on 23-October’s patch release.
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/There also is an issue with scrolling with the scrollbar where items at the bottom of the grid are doubled up. I can easily replicate it when I use the scrollbar thumb to quickly scroll up and down at the bottom of the grid. Rows at the bottom of the grid become very strange.
The issue does not happen in Firefox.
I’m not sure the solution is the same as what you’re working on.
Thanks,
Rob
Hi all,
We were able to identify the problem and release the hot fix sooner. The new version is available for download.
Best regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com/All,
I have confirmed, at least in my applications, that the fix posted by Peter and company solves both issues identified. I did not test the fix in older versions of Chrome.
Firefox, which didn’t experience the issues, still works fine.
Peter – thanks to your team for such a quick turnaround!
Rob
Hi JQX TEAM
We are using your JQX 6.2 ( licensed one) and our customers are now stuck with this scrolling issue on Chrome. We need to give a patch as its fix against jqx 6.2
Please revert .Its urgent .We cant update to 10.1.6.
Thank you
Lokesh@Mehdi, your latest code snippet solved the issue for me, and I’m running a very old version, 3.8.2! Thank you for sharing.
-
AuthorPosts
You must be logged in to reply to this topic.