在条件中设置多个参数

发布于 2024-11-17 16:16:11 字数 340 浏览 4 评论 0原文

我需要在一个条件中设置多个参数。 任何人都可以告诉,如何在 smartgwt 中实现这一点

实际上我的 listgrid 数据需要使用两个 id 进行过滤

int empID = 12;
int yearSpentID = 4;

Criteria c = new Criteria();
c.addCriteria("emp.id",empID);

listgrid.fetchData(c)  

在这种情况下,listgrid 数据将使用员工 id 进行过滤,但我需要使用员工 id 以及花费的年份 id 来获取 listgrid 上的文件数据

有什么建议吗?

I need to set multiple parameter in a criteria.
Can anybody please tell, how to achieve this in smartgwt

Actually my listgrid data need to filter with two id

int empID = 12;
int yearSpentID = 4;

Criteria c = new Criteria();
c.addCriteria("emp.id",empID);

listgrid.fetchData(c)  

In this case listgrid data will be fetched filtered with employee id but i need to use employee id and also year spent id for filereing data on listgrid

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿港小镇 2024-11-24 16:16:11

也许遗漏了一些东西,但这似乎非常简单:只需再次调用 addCriteria() 即可:

c.addCriteria("yearSpendID", 4);

Maybe missing something but this appears to be extremely simple: just call addCriteria() again:

c.addCriteria("yearSpendID", 4);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文