I'd like to be able to filter an object based on an attribute of it's parent:

class Call < ActiveRecord::Base
  belongs_to :user
end

class User < ActiveRecord::Base
  has_many :calls
end

I'd like to be able to do this:

ActiveAdmin.register Call do
  filter :user
end

and have it filter on user.name, rather than present a select of all users. Can this be done?

link|improve this question
feedback

3 Answers

Try this:

ActiveAdmin.register Call do
  filter :user_name
end

Since ActiveAdmin uses meta_search for filters their doc is very helpful: https://github.com/ernie/meta_search

link|improve this answer
feedback

Denis's solution almost worked for me. I just needed to add the filter type. For example:

ActiveAdmin.register Call do
  filter :user_name, :as => :string
end
link|improve this answer
feedback

You can use nested resources from InheritedResource which is used by ActiveAdmin, so your list is automatically filtered by the parent.

ActiveAdmin.register User do
  # this is the parent resource
end

ActiveAdmin.register Call do
  belongs_to :user # nested below resource user
end

You can then use rake routes to see the new nested routes, generated by ActiveAdmin :) Hope it helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.