It was already mentioned on a forum earlier, but couple of years ago. What is the best practice on how to deal with a lazy loading from a server today?
In principle, I should probably use a hook as it was done in this topic
hot.addHook('afterScrollVertically', function() {
var last = hot.getPlugin('AutoRowSize').getLastVisibleRow();
console.log(last);
})
But then, I need somehow remove the upper rows and populate the table from the bottom. Otherwise, when a user scroll through a long table it will keep the old data in memory and will load a new one from a server constantly, which might be not good…?
Sorting on a server’s side I believe is still problematic, right?
Thanks