Answers for "rails chechbox tag"

0

checkbox tag in rails

<%= form_tag(medication_select_path, method: 'put', :id => 'medication-select') do %>
  <% @medications.each do |medication| %>
    <%= check_box_tag "medications[]", medication.id  -%>
  <% end %>
<% end %>
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language