GWT Table that supports dynamic filtering

后端 未结 1 898
南旧
南旧 2021-01-24 15:29

This question is similar to GWT Table that supports sorting, scrolling and filtering

However I would prefer open source and I am looking for snappy performance. I want a

1条回答
  •  情歌与酒
    2021-01-24 16:03

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

    • BulkTableRenderers Bulk rendering of tables(up to 10x faster then normal rendering).
    • Scrolling tables, where the footer and header are fixed.
    • Paging tables, where the table can page through arbitrary data sets.
    • Editable tables, complete with common cell editors.

    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).

    0 讨论(0)
提交回复
热议问题