I need to produce a select menu with a Default value on the list of <options> . Here is how I need it looks like.

<select name="menu[parent_id]" id="menu_parent_id">
 <option value="0">==None==</option>
 <option value="34">TEST</option>
</select>

Currently I use this select helper in my form

   <%= f.select(:parent_id, @parent_menus.collect {|p| [ p.name, p.id ] }, {:include_blank => '==None=='})%>

the above code produce this; (value="")

<select name="menu[parent_id]" id="menu_parent_id">
 <option value="">==None==</option>
 <option value="34">TEST</option>
</select>

Does anyone here can show me a way to add value="0" to the options list?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted
<%= f.select(:parent_id, [["==None==", 0]] + @parent_menus.collect {|p| [ p.name, p.id ] }) %>
link|improve this answer
Here is what I get for that, <option value="==None==">==None==</option><option selected="selected" value="0">0</option> Actually I'm looking for something like this <option value="0">==None==</option> – randika May 5 '10 at 10:15
Sorry, my fault. I forgot one []. Check out my update. – Simone Carletti May 5 '10 at 12:28
Hooray it worked! thanks a bunch Simone. I'll make this as the answer. – randika May 6 '10 at 6:32
feedback

Try

<%= f.select(:parent_id, options_for_select(["==None==", 0] + @parent_menus.collect {|p| [ p.name, p.id ] }, 0)) %>
link|improve this answer
feedback

I don't know this is Ruby way or not But this will definietly work

<%= f.select(:parent_id, "<option value='0'>Please select</option>"+options_for_select(@parent_menus.collect {|p| [ p.name, p.id ] }))%>

EDITED. For pre-selected according to the value save in database i assume @user is your object contain the database value for following example.

<%= f.select(:parent_id, "<option value='0'>Please select</option>"+options_for_select(@parent_menus.collect {|p| [ p.name, p.id ] }, @user.id ))%>
link|improve this answer
please check my Edited Answer hope that helps. – Salil May 5 '10 at 12:11
feedback

Your Answer

 
or
required, but never shown

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