Can I know that the user to scroll to the end of the grid?

Hello!
Can I somehow know that the user to scroll to the end of the grid? Special events or something else?
I use standart library, not pro, if it important.

Please, try to use the onScroll event:
docs.dhtmlx.com/doku.php?id=dhtm … t_onscroll

But how I can get “hieght” of data-area of grid?

You may try to use the getSatateOfView() method.
For example:

mygrid.attachEvent("onScroll",function(){ if(mygrid.getStateOfView()[0]+mygrid.getStateOfView()[1]==mygrid.getStateOfView()[2]){ console.log("this is the end") } })