I have the following which creates a select box:
<%=select_tag "people", options_from_collection_for_select(@people, "id", "name")%>
This creates an item for each person, problem is I would like a "All People" value 0, option added and selected by default on load?
does the select_tag in rails 3 support this?
Thanks