DHTMLXGrid auto scroll issue

Hi,

I have used html table and convertig it to Dhtmlx Grid using dhtmlXGrid_start.js.

The issue is : If I have 20 records and only 10 are visible as soon as I reached to 10th row grid automatically scrolls down to display the remaining rows.Similar thing is happening with columns as well (For Ex: If there are 5 columns and only 3 are visible due to horizontal scroll, as soon as mouse reached to 3rd column the 4th and 5th will be displayed automatically)

I have seen the same issue in sample demo on below link:
dhtmlx.com/docs/products/dht … _html.html

Is there any issue with dhtmlXGrid_start.js because the issue only occuring when html table is converting to grid.Not in the case of div.

Could you please help me on these.

Thanks&Regards,
Smita.

Please, try to disable autoscroll:

mygrid.moveToVisible=function(){};

1 Like