I am currently working on a custom table that I have made with knockoutJS and jQuery. Because this table is possibly dealing with 1,000 - 100,000 rows, I have implemented my own virtual scrolling technique in KnockoutJS to ensure that only 35 or so elements are visible at a time (depending on viewport height). When scrolling with the scroll-wheel, the table's tr elements are dynamically updated in-place to give the illusion of scrolling. This much works.
However, I need to think of a way to implement fake scrollbars. I am needing a fake scrollbar that does not actually scroll the page, but rather calls a function when dragged so that I can re-direct that info to my knockoutJS virtual scroller for updating the tr elements.
I have looked a bit into jScrollPane, but am not sure if it will support what I want. Does anyone else have experience with this?
Thanks.