collection_check_boxesを編集時に保存されている値を初期値として入れておきたいのですが、
色々と調べてみても反映されなかったので、質問させていただきました。
画面は表示されますがチェックが全くついていない状態です。
どうすれば保存されている値を初期値を入れることができるのでしょうか。
※モデルは割愛させていただきますが、きちんと関連付けしております。
View
1<%= collection_check_boxes(:building,:small_category_ids, Category.where(genre_div: 1), :id, :name, {checked: @small_pluck_ids.map(&:to_param)}) do |category| %> 2 <%= category.label do %> 3 <%= category.check_box %> 4 <%= category.text %> 5 <% end %> 6<% end %>
controller
1 @category_item = CategoriesItem.where(item_id: @item_id) 2 @small_category_all = Category.where(genre_div: 1) 3 @small_category_items = @category_item.pluck(:small_category_id) 4 @small_category_ids = Category.where(id: @category_item.small_category_id) 5 @small_pluck_ids = @small_category_ids.pluck(:id)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。