Hi, simple question:
When I do this:
It matches 2, 22, 2212 etc.
I want it to match 2, but I can't remember/find how to do it.
When I do this:
Code:
Criteria criteria = new Criteria(); Long[] ids = new Long[]{2}; criteria.addCriteria("id", ids); myGrid.setCriteria(criteria);
I want it to match 2, but I can't remember/find how to do it.
Comment