Hey guys I'm a rails newbie and I have a question about select boxes in forms. Here is my code right now.

<%= form_for @message do |f| %>
  <%= f.text_field :name %>
  <%= f.select :topic ['Test1', 'test2']
<% end %>

Now, this code works for submitting the information in the text boxes, but for some reason not the information in the select box. However my main question is, Is there a way that I can make a select box and rails automatically include: "Please select an option" and that way when I do validates_presence_of :topic on the select box it will return false if it hasn't been changed?

Also, do any of you think you know why the select box isn't submitting info to my database?

Thanks in advance!

link|improve this question

33% accept rate
1  
Have you tried by adding the comma after :topic and closing the tag? Getting it like this <%= f.select :topic, ['Test1', 'test2'] %> – rogeliog Jun 28 '11 at 3:38
That should work, please let me know – rogeliog Jun 28 '11 at 3:42
feedback

1 Answer

Yes, what you want is easy to do. Just add a pair of values, your placeholder text and a blank value, to the beginning of your select options. Try this:

<%= f.select :topic, [['Please select an option', nil], 'Test1', 'test2'] %>

link|improve this answer
1  
As far as the field not being saved to the database, perhaps you need to add :topic to your list of attr_accessible attributes. – Wizard of Ogz Jun 28 '11 at 3:48
feedback

Your Answer

 
or
required, but never shown

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