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