Synchronize horizontal scroll two grids
I did a quick search on how to synchronize the scroll bar movement when you have two grids and didn't find anything, so once I figured it out, decided to share the code in case anyone else ever needs it:
grid1.onScrollLeftChanged = function(value){grid2.setScrollLeft(value)};
grid1.onScrollLeftChanged = function(value){grid2.setScrollLeft(value)};
Thom
August 30,