Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for a component where I can present not only millions of rows but also a lot of columns (up to 100000). I am not looking for answers in the form of "Why would you that?". I know slickgrid can represent millions of rows, but does not manage the virtualization of columns. Columns are not treated as rows and when you have too many columns (more than 150 rows) slickgrid gets buggy and slow.
Can anybody suggest such a component which will process not only heavy vertical scrolling but horizontal scrolling as well? Not only rows, but columns as well?
It's not jQuery, but QooXDoo's grid is supposed to be capable of quite a bit of heavy-lifting. Of course, I cannot testify in its favor, since I haven't actually used it.
http://qooxdoo.org/
Have a look at YUI's ScrollingDataTable: http://developer.yahoo.com/yui/docs/YAHOO.widget.ScrollingDataTable.html
"The ScrollingDataTable class extends the DataTable class to provide functionality for x-scrolling, y-scrolling, and xy-scrolling."
You should give a try to SlickGrid:
A lightning fast JavaScript grid/spreadsheet
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm searching for a ListBox/DualListBox for React that can hold thousands of options without having delay or stucking problems on loading.
I found react-window https://react-window.now.sh/#/examples/list/fixed-size for simple list view but no way to do a selection...
...and react-windowed-select https://github.com/jacobworrel/react-windowed-select but there's no way to have a multiple select with this.
My goal is to have something like this wonderful DualListBox https://www.npmjs.com/package/react-dual-listbox but with the potential of a windowed list like the first link I mentioned.
If anyone could help it'll be very much appreciated.
Thanks in advance!
I started using Autocomplete from MaterialUI and Virtualizing the list with multiple choice and checkboxes. It seems working very well.
https://material-ui.com/components/autocomplete/#autocomplete
https://material-ui.com/components/autocomplete/#checkboxes
https://material-ui.com/components/autocomplete/#virtualization
The list is virtualized thanks to react-window https://github.com/bvaughn/react-window
Hope this could help someone.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need a javascript grid for representing huge data( i mean thousands of records ) with a pretty fast searching and sorting feature. I've found a few, but i dont really know which would be the best. I would need some basic features built in the grid such as: -sorting, searching in rows, filtering etc.
Anyone know a grid which would suit my needs?
please try using this(JSLightGrid): https://github.com/chanakyachatterjee/JSLightGrid. It's pure javascript(no need of jquery or any other library), responsive and quite fast when comes to huge data. eg sorts 2k records in 52 milliseconds.
Have you tried ag-Grid? It does all the things that you are looking to do. It was written for financial applications, so is very capable with the 'lots of data' requirement.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm wondering which JS library would be best to dynamically visualize survey data from a postgres db. I've been looking at morris.js, google visualizations, rapael.js, and D3. The survey has_many questions which in turn has_many answers whose votes' columns are incremented by one per an SMS vote(using Twilio). So I'm looking for a charts library that could dynamically update each time my controller receives an SMS, be easy to learn, and ideally have a couple tutorials related to what I'm trying to build.
What have you used and prefer? Any recommendations? Thanks!!
2 big players in this!!!raphael.js and d3.js
D3 for obvious reasons:
based on current web standards(html5,javascript)
good documentation
powerful,robust and reusable
jquery style selection
the only place where raphael defeats d3 is fallback,raphael supports older versions of IE where as d3 is based on current web standards(IE>9)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
On my current project I need to add the following functionality to tables:
Freezing table header
Freezing one or more columns on the left
Ability to re-size columns
We are using RichFaces and jQuery. I have searched for jQuery plugins, but each of them lacks at least one of these features. Could anyone advise a jQuery plugin that provides all of these features out of the box?
I think jqGrid covers all of these required features.
Please see the following demos for each of the feature
Freeze header - True scrolling rows
Freeze columns - Frozen columns
Re-size columns - This feature is present by default but you can always use make them fixed width columns if required. Documentation is pretty good.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are the best libraries available right now for client side pagination?
jQuery Tablesorter is a good choice because you usually want a table with sorting when you're displaying data, and it also has pagination built in, so you get the whole shebang.
YUI also has a very easy to use client-side pagination control.
This one is fairly good too and works with HTML tables without expecting a table model. Comes with both pagination and sorting.
http://www.frequency-decoder.com/2007/10/19/client-side-table-pagination-script
Edit:
Having now used the "jquery tablesorter" script, I have to say it is better than the "client-side-table-pagination-script".