DHTMLGRID

Hi

I have mutliple dhtmlgrid on a page and each of them has the (L-R)scrollbar. Is there any way to control grids scrollbar with one of them so that when I scroll bar one it scroll all of them. Thanks in advance.



Regards,

MB

You can use onScroll event of grid as

master_grid.attachEvent(“onScroll”,function(x,y){
slave_grid.objBox.scrollLeft=x;
slave_grid.doOnScroll();
});