在条件中设置多个参数
我需要在一个条件中设置多个参数。 任何人都可以告诉,如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许遗漏了一些东西,但这似乎非常简单:只需再次调用 addCriteria() 即可:
Maybe missing something but this appears to be extremely simple: just call addCriteria() again: