1 2 3 4 5 6 7 8 9 |
Box:
<%# select_tag 'box_id',
options_for_select(Box.find(:all).collect { |b|
[ b.description, b.id ] }) %>
|
1 2 3 4 5 6 7 8 9 |
Box:
<%# select_tag 'box_id',
options_for_select(Box.find(:all).collect { |b|
[ b.description, b.id ] }) %>
|