tags:

views:

228

answers:

1

This question is similar to http://stackoverflow.com/questions/161686/gwt-table-that-supports-sorting-scrolling-and-filtering

However I would prefer open source and I am looking for snappy performance. I want a good way to perform dynamic filtering on rows.

SmartGWT's adaptive filter looks interesting. http://www.smartclient.com/smartgwt/showcase/#grid_adaptive_filter_featured_category

Anyone have any experience with this?

+2  A: 

Google Web Toolkit Incubator has a range of tables to select from:

From those, PagingScrollTable (demo) seems the best base for creating your own custom solution. To add filtering to it, you'd probably have to tinker with the underlying TableModel (or one of it's subclasses, like MutableTableModel).

Igor Klimer