博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在后台为查询表格添加固定过滤条件
阅读量:6251 次
发布时间:2019-06-22

本文共 392 字,大约阅读时间需要 1 分钟。

 

一、新建一个列表页面,在页面中功能中增加如下配置:

二、写一个handler处理类:

在filterItems中加入固定的过滤条件即可

或者

        FilterInfo filter = new FilterInfo();

        filter.getFilterItems().add(new FilterItemInfo("person.id", personId.toString()));
        filter.getFilterItems().add(new FilterItemInfo("isPrimary", Boolean.TRUE));
        EntityViewInfo viewInfo = new EntityViewInfo();
        viewInfo.setFilter(filter);

转载于:https://www.cnblogs.com/fu512/p/6852392.html

你可能感兴趣的文章
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
C语言作业--数据类型
查看>>
压位高精
查看>>
jsp 中对jar 包的引用
查看>>
python操作mysql数据库
查看>>
Yii: gii 403 Error you are not allowed to access this page
查看>>
计算汉字长度
查看>>
Codeforces 911E - Stack Sorting
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
基于敏捷的测试交付物通用设计
查看>>
BFS --- 素数环
查看>>
for循环每次取出一个字符(不是字节)
查看>>
linux版本选择
查看>>
不写for也能选中checkbox!
查看>>
PCIE_DMA:xapp1052学习笔记
查看>>
css
查看>>
Java规则引擎及JSR-94[转]
查看>>
【c学习-13】
查看>>
给报表增加页眉
查看>>
Mysql配置参数说明
查看>>