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.
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 5 years ago.
Improve this question
I am writing an app that allows users to write and title stories within two textareas (one for each). After submission, I want the title to be displayed as a link to a page that will display the user's product in header(title)/paragraph(story content) notation. As background info, so far I've used only html and css, and I'm hoping to do this with either of the two or javascript. Any help is appreciated! Apologize if this is a confusing post, this is my first!
You will need php to achieve it.
Go learn some stuff about it :
Codecademy has a good interface to learn some language.
https://www.codecademy.com/fr/tracks/php
W3Schools is a standard for html/css/php/sql/jsjquery etc.
https://www.w3schools.com/php/default.asp
You can handle form with some other language, like python or javascript+nodejs. It depends of your needs. But if you are a beginner at coding, try php, you will find a lot of help on the web.
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
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
Does any one know of any good javascript 3d graphing utility? I know that every site ever recommends Canvas 3d Graph but it is actually quite limiting. For one it only allows graphing with datasets that are within the 1000. Though it does have some capability (with a bit of code modifying) to graph data that are a bit out of its range, nothing out of a complete revamp will allow graphing of data based on time or with values hugely larger than 1000. (I have data values that range into the billions.)
Or should I abandon all hope and either write one myself or look to other technology?
Google O3D is a library for producing 3d-graphics using Javascript. It also has a deprecated plugin, but the newest version uses WebGL.
Check it out here: http://code.google.com/p/o3d/
You'll definitely need to build a small graphing-shell around it, but it shouldn't be hard, especially not if you look closely to the examples provided on the Google-code website.
It uses OpenGL as a backend-technology: rendering lots of polygons, on reasonable hardware, is not a problem at all.
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 6 years ago.
Improve this question
Are there any resources comparing the adoption rates of the various javascript frameworks similar to tcpi? Basically the number of sites using a particular framework on a time-line would be ideal.
I don't know of anything specifically like that, though Google Trends is probably a pretty good indication of popularity. For example, you can compare jquery and mootools:
http://www.google.com/trends?q=jquery,+mootools
You can use google trends for that:
http://www.google.com/trends?q=javascript+jquery%2C+javascript+prototype%2C+mootools%2C+javascript+yui&ctab=0&geo=all&date=all&sort=0
It's not totally accurate since it relies on searches made on google, but it gives a good idea
Take this three
Wikipedia article
SurveyMonkey
Another survey
(source: getdropbox.com)
I ran once into following estimation methods:
Community activity: using github - stars/forks/open/closed issues
FAQ support: using StackExchange API - questions/answered(solved)/avr. answers per question
Here I fetched these stats to compare AngularJs/Backbone/EmberJs (13.06.2014)
http://www.slideshare.net/dsheiko/java-script-framework-making-the-right-choice
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".