Primefaces DataTable搜索表单

时间:2013-04-29 23:19:00

标签: jsf-2 primefaces

正如在Efficient JSF Pagination所述,当你必须从数据库显示数据时,这是最好的实现。

我将基于此http://hrycan.com/2012/03/28/primefaces-lazy-loading-datatable-for-jsf2/

实施解决方案

延迟加载使用

public List<Record> load(int first, int pageSize, String sortField, SortOrder sortOrder, Map<String,String> filters) { .....

我喜欢实施这种情况

  • 每个字段有一个字段的表单
  • 搜索按钮
  • 按下搜索时将更新的数据表,但使用表单字段中指示的过滤器。

这是可行的以及如何管理外部过滤器(不在数据表中)?? ??


|------------------------------------------------------------|
|                                                            |
|Form with a lot of field more or less 1 for each column.    |
|                                                            |
|Serch button ; reset button                                 |
|                                                            |
|------------------------------------------------------------|
|                                                            |
|            Data table with pagination                      |
|------------------------------------------------------------|

0 个答案:

没有答案