Reputation: 1080
I need a way to show a grid in a web application, allowing grouping of the data by several user selected fields. The ideal would be something like what excel dynamic tables provide. Does anyone know about a control that can do this? If it is integrated with ASP.NET that would be a plus. Thanks in advance!
Upvotes: 0
Views: 545
Reputation: 27516
You might want to take a look at Ext. It's a JavaScript library which (amongst other things) can be used to display a sortable/filterable list. It all happens on the client, so it's very lightweight from a server perspective.
Upvotes: 1