:: DHX Grid :: End of scroll.

Hi there,



How will I come to know that the vertical scroll bar has come to an end while scrolling the records in the grid ???

You can use “onScroll” event dhtmlx.com/dhxdocs/doku.php?id=d … t_onscroll

Hi there,

This just gives some numeric number but I wish to know when the scroll bar reaches its end in the bottom. How to do this ?

mygrid.attachEvent(“onScroll”,function(){
var state = mygrid.getStateOfView();
if (state[0]+state[1] >= state[2]) alert(“at the end of a grid”);

return true;
});