Hi,
Is there anyway of getting/setting the scroll position of a Handsontable i.e. in JS you could use
var elmnt = document.getElementById("???");
var x = elmnt.scrollLeft;
var y = elmnt.scrollTop;
If the above code is possible, what ElementById would you use.
I am trying to set the Handsontable scroll position when initializing the page.
Thanks for any help.
Hi Ben,
you can use scrollViewportTo
method. Here’s how it works http://jsfiddle.net/0ubtkvwc/
Hi
Thank you for this. How would i get the scrollViewportTo(50, 50) settings i.e. 50 and 50, I am re-initializing the page, and need the values that were set before the reload.
Thanks
Sorry, but I do not understand. The demo that I have sent you scrolls the table to 50,50
coordinates. If you would like to track what user selected and get back to his selection that you would need to store afterSelectionEnd
hook values
Hi,
Your example shows how to set a scroll position, but not how to get the current scroll position; so it can be reloaded in after i re-initialize the page.
background:
I am re-initializing a page, as handsontable was to slow at doing everything I wanted it to do and pushed it to the back end, as there will only ever be one or two users of my software. (very fast)
I think I got the wrong end of the stick slightly !! This helps thank you.
Glad I could help one way or another 
Feel free to ask me anything.