I am trying to add a dynamic datagrid in my web application and since I am using jQuery I am eager to use the plugins available. I am not aware of most of them and also require good documentation because I am new to this, and it will be difficult for me to start without documentation. Where is the the documentation and which site should I look to for this?
Asked
Active
Viewed 1.3e+01k times
59
-
possible duplicate of [Looking for a good datagrid plug-in for jQuery](http://stackoverflow.com/questions/685664/looking-for-a-good-datagrid-plug-in-for-jquery) – redsquare Apr 11 '11 at 14:28
-
Possible duplicate of [jQuery Grid Recommendations](http://stackoverflow.com/questions/159025/jquery-grid-recommendations) – Peter Mortensen Oct 30 '11 at 12:24
-
A good one with php and mysql integration is openjs grid. http://square-bracket.com/openjs – Sean Clark Jan 08 '13 at 19:37
3 Answers
68
You should look here: https://stackoverflow.com/questions/159025/jquery-grid-recommendations
Update
The link above takes to a question that was closed and then deleted. Here are the original suggestions that were on the most voted answer:
- Gijgo Grid: http://gijgo.com/grid/
- jQuery Grid: http://www.trirand.com/blog/
- Ingrid: http://reconstrukt.com/ingrid/
- SlickGrid http://github.com/mleibman/SlickGrid
- DataTables http://www.datatables.net/
- ShieldUI Grid http://demos.shieldui.com/web/grid-general/basic-usage

Community
- 1
- 1

Adriano Carneiro
- 57,693
- 12
- 90
- 123
-
7@think123 Not actually broken, the question, for some reason, got closed and then deleted. Users with higher rep can still see it. – Adriano Carneiro Aug 29 '12 at 14:03
-
1
-
wondering if anybody ever noticed [Handsontable](http://handsontable.com/) is out there – Asif Ashraf Sep 10 '13 at 00:51
-
8That page is another casualty of the overzealous moderating that is plaguing SO... – richard Nov 17 '13 at 10:06
-
I think that you will be fascinated if you check the [shieldui grid widget](https://demos.shieldui.com/web/grid-general/basic-usage) – katherine heigl Jun 09 '14 at 17:53
-
Is this [`jeasyUI`](http://www.jeasyui.com/documentation/datagrid.php) recommended for standard application development? Without much thinking I used a code and spent much time developing a full application on it realize that's it's heavily dependent of jeasyUI's datagrid. What could be a standard plugin to replace this one without much changes to the code/flow? – aspiring May 22 '15 at 16:56
-
Datatables worked extremely well for my last project. Great documentation too! – matt_dev Aug 25 '15 at 21:51
-
-
jQuery Bootgrid can be a nice option (if you use bootstrap) => http://www.jquery-bootgrid.com/ – ivanasetiawan Jun 11 '16 at 15:08
-
I am using ShieldUI grid and it provides a rich variety of features.https://demos.shieldui.com/web/grid-general/basic-usage – lyub35 Aug 11 '16 at 11:01
-
jquery grid by gijgo.com is also a very good option, especially when you are using Bootstrap. http://gijgo.com/grid – Atanas Atanasov Oct 10 '16 at 11:51
13
A good plugin that I have used before is DataTables.

tobias86
- 4,979
- 1
- 21
- 30
-
Agreed. DataTables has a lot of functionality and has pretty good documentation – Phil Hale Apr 11 '11 at 14:54
-
3
-
2I wish datatables had a nested grid option.... expandable rows to show sub grids – Alex Apr 12 '13 at 23:52
9
The three most used and well supported jQuery grid plugins today are SlickGrid, jqGrid and DataTables. See http://wiki.jqueryui.com/Grid-OtherGrids for more info.

rdworth
- 1,052
- 7
- 9
-
2Please keep in mind that slickgrid still does not have Jquery 1.9 support. – detay Mar 17 '13 at 13:19
-