views:

52

answers:

4

I am looking for a datagrid which can show hierarchical information. I don't need it to be ajax driven ... can simply even be from static data embedded in HTML.

A: 

Although I don't like YUI for most things, their DataTable widget is actually pretty good and useful.

What type of hierarchical information do you want to display?

pkananen
A: 

Take a look at ExtJs. May be a resource hog though.

seand
+1  A: 

DataTables is amazing: http://www.datatables.net/ the best by far that I have used.

It uses simple HTML tables, or ajax etc.

It is hard to directly answer your question since I don't know what sort of hierarchies you have but I've used it for simple hierarchical relationships and the grouping feature might help you ...

http://www.datatables.net/examples/advanced_init/row_grouping.html

Somewhat related: You might want to look into jsPlumb. It's a very neat way to graphically show hierarchies

ex: http://morrisonpitt.com/jsPlumb/html/jquery/chartDemo.html

Justin Jenkins
A: 

Take a look at this ExtJS example... maybe what you are looking for:

http://www.sencha.com/deploy/dev/examples/tree/column-tree.html

Impiastro