How to do the synchronized horizontal scrollbar from the handsontable with other grid

Tags: #<Tag:0x00007efc65052fe0>

I just need to synchronize the horizontal scrollbar for the handsontable with other grid. I am not able to do it via jquery script as

$(’.ht_master’).on(‘scroll’, function(){
console.log($(this).scrollLeft())
$(’.grid1’).scrollLeft($(this).scrollLeft());
});

Also I tried afterScrollHorizontally hook method . But I couldn’t find any value from it and I don’t know how to set the scroll from external grid value.

Please suggest me how to do this

Hi @ramprasath.raja

Handsontable is scrollable by a column index. It means that you can programmatically scroll to a column by calling scrollViewportTo().