How to search by date with Grails searchable plugin

781 Views Asked by At

I am using the searchable plugin for Grails and I am wondering how I can search by date?

My groovy class has a date field like this

class Foo {
    Date myDate
    String value

    static searchable = true
}

and I am able to search for things in the value field but not in the date field.

0

There are 0 best solutions below