I want to disable the grid automatic scroll issue.
For instance, I have a grid with 1000 rows and grid height is set in such a way that it only shows 20 rows at a time. Now a vertical scroll bar appears to scroll up-down and in addition to that when I take the mouse at the 20th row the grid automatically begins to scroll downwards, similarly it scroll automatically upwards when the mouse is pointed on the 100th row(i.e. when i am viewing the grid from 100-120th row).
I want to disable automatic scroll behavior, such that I can manually scroll via mouse or by dragging the vertical scroll bar.
I also want to know is there any way to disable grid’s automatic scroll when the grid’s columns are split. As when I try to implement the fix you provided, the grid automatic scroll is not disabled for the first two columns, i.e. i have implemented mygrid.splitAt(2);, but for rest of the columns i.e. after the split the automatic scroll is disabled though by the fix which you have provided.
Also, you can see in the image as attached when the row is highlighted it’s not in one line. Is there any way to fix that too.