Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Table Plugin with Group By

I need a jQuery Plugin that makes a Sortable and Groupable List of my Data. My Data is a Tasklist with a duedate, and i would like to have them grouped by date, and sortable. Is there a plugin that can handle that? I'm actually using dataTables, but it has some strange behavoir and bugs...

Like:

16-10-2009
- Task 1
- Task 2
17-10-2009
- Task 4
18-10-2090
- Task 3
like image 485
k0ni Avatar asked Oct 16 '09 08:10

k0ni


1 Answers

Many jQuery plugins can provide you a smart solution:

Best for simple groups: http://www.trirand.com/blog/jqgrid/jqgrid.html

Easier: http://www.jankoatwarpspeed.com/examples/expandable-rows

My recommendation to complex groupings: http://www.hanpau.com/index.php?page=jqtreetable

Hope that helps :)

like image 95
Dan Avatar answered Sep 20 '22 04:09

Dan