collection_select – Prompt or Include blank
Thursday, December 2, 2010 1:57Use this for a new record
collection_select(:product,
:story_id,
Story.all,
:id,
:title,
{:prompt => true}
)
Otherwise,
collection_select(:product,
:story_id,
Story.all,
:id,
:title,
{:include_blank => 'Please Select'}
)
