Tom Bray

Results 7 comments of Tom Bray

And actually, since Node 4.3.2 supports es6, the babel transpilation shouldn't be necessary. I tried removing the custom `npm run build`, but `gordon build` just hangs.

Hmm, that's actually the syntax that I tried first. For some reason that doesn't work (the filter doesn't get applied, all Accounts returned), however manually using a DetachedCriteria from the...

Also, I discovered that if I put that in the initalCriteria closure, it works as expected: ``` initialCriteria { phoneNumbers { eq ( 'value', '3105551212') } } ``` Maybe it...

I've stepped through and a filter is definitely created, however in the sql log I see: ``` Hibernate: select count(*) as y0_ from account this_ where 1=1 ``` when I...

Stepping into DetachedCriteria.handleJunction() I see that lastJunction.criteria is empty.

I created a jira here: http://jira.grails.org/browse/GRAILS-10879 And attached a sample project there: http://jira.grails.org/secure/attachment/18749/foobar-bug-report-02122013.zip Thanks again for your help.

globalFilterClosure works great! Thanks! I didn't know about it before, that's why I went with the filterForm approach.