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.
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")
}
})