Ich versuche, die ActionView-Helfer collection_select
um einen Wert zu übernehmen, der im Dropdown-Menü vorausgewählt wird.
Weder noch ( :selected
im html-option-hash)
<%= collection_select(:my_object, :my_method, @my_collection, :id, :description_string, {}, {:selected => @my_collection_object.id}) %>
noch ( :selected
im Option-Hash)
<%= collection_select(:my_object, :my_method, @my_collection, :id, :description_string, {:selected => @my_collection_object.id}, {}) %>
scheinen zu funktionieren.
Was mache ich falsch? Kann mir jemand dabei helfen?