Is that possible to configure rails admin to filter by certain field only, as right now it can search by all of the column and it is slow.

Apparently my add filter button didn't show up the fields as well after I customize the index page. Here's my setting under my model file:

rails_admin do |config|
list do
field :application_id
field :release_date
field :title
field :detail
sort_by :release_date
sort_reverse true
end
end
How do I customise to search by certain field only and customise add filter options.
The documentation says we can turn off searching on certain fields with
field :created_at do
searchable false
end
You can configure the options for filters, but it seems to accept only an array of fields:
filters [:name, :manager]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With