checkbox instead of dropdown

R

Remco Swoany

Hi,

I am a RoR newby. The code below shows the categorie names, in a
dropdown from the categories table and that works fine. But now i want
to show the categories through checkboxen. How can i realise that??



<select name="recipe[categorie_id]">
<% @categories.each do |categorie| %>
<option value="<%= categorie.id %>"
<%= 'selected' if categorie.id == @recipe.categorie_id %>>
<%= categorie.name %>
</option>
<% end %>
</select>

Grtz..remco
 
J

John Joyce

Hi,

I am a RoR newby. The code below shows the categorie names, in a
dropdown from the categories table and that works fine. But now i want
to show the categories through checkboxen. How can i realise that??



<select name="recipe[categorie_id]">
<% @categories.each do |categorie| %>
<option value="<%= categorie.id %>"
<%= 'selected' if categorie.id == @recipe.categorie_id %>>
<%= categorie.name %>
</option>
<% end %>
</select>

Grtz..remco
For this kind of question you should really check the Rails list.
 
J

Jeremy Woertink

Remco said:
Hi,

I am a RoR newby. The code below shows the categorie names, in a
dropdown from the categories table and that works fine. But now i want
to show the categories through checkboxen. How can i realise that??



<select name="recipe[categorie_id]">
<% @categories.each do |categorie| %>
<option value="<%= categorie.id %>"
<%= 'selected' if categorie.id == @recipe.categorie_id %>>
<%= categorie.name %>
</option>
<% end %>
</select>

Grtz..remco

Check out the rails doc http://api.rubyonrails.org/

You would put the check_box inside an iteration. so..
<% @categories.each do |category| %>
<%= check_box(category, name) %>
<% end %>

~Jeremy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,266
Messages
2,571,342
Members
48,018
Latest member
DelilahDen

Latest Threads

Top