I try to use grouped_selects group_method with a custom scope. A user can see only projects and tasks he belongs to.
This is working, i got all my Project with Tasks to select:
# using simple_form
<%= f.input :project_id, :as => :grouped_select,
:collection => Project.my_scope(current_user),
:group_method => :tasks %>
This is not working. I try to get the tasks from my_scope.
# using simple_form
<%= f.input :project_id, :as => :grouped_select,
:collection => Project.my_scope(current_user),
:group_method => Task.my_scope(current_user) %>
UPDATE
I also tried this with rails default helper and this seems to work:
<%= f.grouped_collection_select(:project_id,
Project.my_scope(current_user),
:"tasks.my_scope(#{current_user.id})",
:name, :id, :name) %>
Is this a common practise or are there other ways to achieve my needs?