I have three different models that will be involved with this. I am trying to create a user who will belong to an owner. The owner has many partners and the partner has many clients. The problem with this and how it varies from other questions asked here, is that I do not want someone to view source of the page and see the entire list of clients. This is currently in devel/testing phase right now. I will eventually restrict the owner_id to be hard coded to the @current_user's owner_id. This owner user can only see their own partners and those partner's clients. I would not want them to see the partners of another owner.
<%= f.input :owner_id, :as => :select, :collection => Owner.find(:all) %>
<%= f.input :partner_id, :as => :select, :collection => Partner.find(params[:owner_id]) %>
<%= f.input :client_id, :as => :select, :collection => Client.find(params[:partner_id]) %>
The issue that I have above is that the find params is generating an error since the :owner_id has no value and is not going to find any partners. So how do I go about having the client selection populate the list of clients when a partner is selected. Likewise, how to figure out how to populate the Partners once the owner is selected. Keep in mind, that the owner line will change once I figure this piece out. There's no point in moving forward until this is figured out.
If this were a City based on the State chosen, I've found several options but haven't found the right one with this yet. Thanks guys!