Wow, did you send this message that long ago? I certainly hope
there's nothing wrong with the Google moderation queue, because I
don't remember getting a message saying there was a message awaiting
moderation.
>
> ======================================
> Plant.apply_scopes(:bloom_color_is => params[:bloomcolor])
> ======================================
>
Try bloom_color_id_is => params[:bloom_color_id].
Bryan
> I am trying to use <filter-menu> to filter the index page of one of my controllers. It works for object that are a part of the model directly, but does not work for any of the child objects. Code examples below:
> ======================================
>
> class Plant < ActiveRecord::Base
>
> hobo_model # Don't put anything above this
>
> fields do
> name :string
> timestamps
> end
>
> has_many :bloom_color, :through => :bloom_color_assignments, :accessible => true
One other thing - have you tried pluralizing this? Hobo makes a fair number of assumptions when generating scopes, and having a has_many with a singular name may cause weird results.
--Matt Jones