Show HN: Smart-table-scroll – Browser-based tables with 1M rows
11–19 of 19 posts
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#12What would be your use case? Apart from this being a nice feat of technology and the possibility of loading the data asynchronously, in what scenario would it be practical to present 1K+ rows of data to a user? It's infeasible or at least very impractical to examine them by hand - some sorting/filtering possibility is necessary for large datasets and if your filters still return 1K+ rows you could have filtered on so…
Online spreadsheets. The end users are conditioned already on how to navigate with find, home, end, etc. Edit: Seems like it might break on-page find though, right?
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#13What would be your use case? Apart from this being a nice feat of technology and the possibility of loading the data asynchronously, in what scenario would it be practical to present 1K+ rows of data to a user? It's infeasible or at least very impractical to examine them by hand - some sorting/filtering possibility is necessary for large datasets and if your filters still return 1K+ rows you could have filtered on so…
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#14What would be your use case? Apart from this being a nice feat of technology and the possibility of loading the data asynchronously, in what scenario would it be practical to present 1K+ rows of data to a user? It's infeasible or at least very impractical to examine them by hand - some sorting/filtering possibility is necessary for large datasets and if your filters still return 1K+ rows you could have filtered on so…
https://www.reddit.com/r/django/comments/3hlhgq/best_way_to_... asking for a
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#15No jQuery needed, with eventing and keyboard navigation
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#16How well does this plugin handle that? I noticed you didnt use a table, so perhaps you dont really care about styling it like one either.
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#17Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#18Nice, reminds me on the table views in iOS.
I’m not a web guy but most sorting table implementations on the web I’ve seen do the opposite, instead treating the table contents as the data to be manipulated. While this works it’ll cause you trouble in the long run and if nothing else will negatively impact performance. With the cell reuse model, you instead perform your transformations on the original data (free of markup gunk) and ask the table view to update itself to match the data source. Under iOS, this is done through UITableView’s reloadData method. You never directly interact with the table view’s recycling functions.
Re: Show HN: Smart-table-scroll – Browser-based tables with 1M rows
#19What would be your use case? Apart from this being a nice feat of technology and the possibility of loading the data asynchronously, in what scenario would it be practical to present 1K+ rows of data to a user? It's infeasible or at least very impractical to examine them by hand - some sorting/filtering possibility is necessary for large datasets and if your filters still return 1K+ rows you could have filtered on so…
Also, it makes a certain sense to over-engineer this kind of technology to give other elements of the stack some leeway. Lazy loading is great but so is pre-emptively loading data in case latency rises.