我有以下grouped_collection_select
,其中类别和子类别显示在表单上。当前,子类别是可选的,而不是类别。我希望它反过来...类别是可选的,子类别是不可选择的。我该如何实施?
<%= form.grouped_collection_select :category_id, Category.roots.order(:name), :children, :name, :id, :name, {:include_blank => true}, {class: "", :multiple => true } %>