Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a Rails view, I'm trying to show a <select> drop-down list for a number of different string fields with restricted values.

I've been trying to do this with a partial (below), but the current value is not being selected in the <select> list.

  • Is it possible to do this in a partial? If so, how?
  • Is there a better approach to take?

edit.html.erb:

<% form_for(@my_class) do |f| %>
  <%= render :partial => "select", :locals => { :attribute_name => :blah, :f => f } %>
<% end %>

_select.html.erb:

<p>
  ...
  <%= f.label attribute_name %><br />
  <%= f.select attribute_name, [:option_a,:option_b,:option_c], { :selected => attribute_name } %>
  ...
</p>
share|improve this question

1 Answer

I believe the selected option checks based on the value, not the name of the attribute.

This may work for you, but I have not tested it out:

<%= f.select attribute_name, [:option_a,:option_b,:option_c], { :selected => @my_class.send(attribute_name) } %>
share|improve this answer
Thanks. This is more convoluted than I expected, but if it works, it works. Hopefully I'll try it later this week. – Alison Aug 2 '10 at 16:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.