When you access your admin page, search filter used to return the results as expected for dates selected.
filter :hash_key
filter :serial_number
filter :partner
filter :created_at
I have made changes to tables like added few more columns. Now all the search filter works fine except filter:
created_at
When date is selected, it reflects on the page but the same value is not passed to server. Usually in working condition query will form like: http://.../admin/entitlements?utf8=%E2%9C%93&q%5Bcreated_at_gte%5D=2016-02-10&commit=Filter&order=id_desc
But in current case, query is formed as: http://.../admin/entitlements?utf8=%E2%9C%93&q%5Bhash_key_contains%5D=&q%5Bserial_number_contains%5D=&q%5Bpartner_id_eq%5D=&commit=Filter&order=id_desc
It will not have date entry here.
Version i am using: activeadmin (0.5.1) meta_search (1.1.3)
If i set the date manually by edit its html source, it starts working but upon reset, it will not work.