Created
August 12, 2017 23:23
-
-
Save RachelSa/6205ef3f4472bbb4256045aac5b06a88 to your computer and use it in GitHub Desktop.
Rails collection checkboxes with iteration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= f.collection_check_boxes(:program_ids, @programs, :id, :title) do |b| %> | |
<div> <%= b.check_box %><%= b.label { b.text } %></div> | |
<% end %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment