NeverFall
NeverFall

Reputation: 229

Javascript Grid with multiple groupings

I would like to know if there are other javascript components that provide presentation of grid with multiple groupings. Below is a screenshot of jqGrid I extended to allow the feature however it needs all the data to be fetched. I would like that data would be loaded when the grouping is expanded.

Screenshot of jqGrid Another modified jqGrid would be nice since it is what we've been using in our project :)

Upvotes: 2

Views: 6140

Answers (3)

Vladimir Georgiev
Vladimir Georgiev

Reputation: 1949

ShieldUI's Grid can also do this - it has flexible grouping, hierarchy support and and many other fancy options.

It is a very affordable solution compared to others and also comes with a whole library of other useful UI widgets for charting, editing, layout, etc.

Upvotes: 2

Veronika Lindorenko
Veronika Lindorenko

Reputation: 31

I know one free component that is similar to the above described grid - TreeTable. It provides presentation of grid with multiple groupings: http://docs.webix.com/samples/15_datatable/30_treetable/14_colspan.html. Moreover, it has a dynamic loading feature.

Upvotes: 1

bpeterson76
bpeterson76

Reputation: 12870

Yep, Datatables does this really well.

The tutorial on how to do the show/hide details is here

I strongly recommend Datatables because after trying nearly every jQuery and YUI solution out there I've realized that it has more features, better support, and the best Ajax operation I've found. As a strong bonus, it's ThemeRoller capable, which means that I can re-skin my apps in just minutes, which has made that operation incredibly profitable.

Upvotes: 3

Related Questions