Skip to content

Instantly share code, notes, and snippets.

@lelandsmith
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lelandsmith/9442081 to your computer and use it in GitHub Desktop.
Save lelandsmith/9442081 to your computer and use it in GitHub Desktop.
Input Select Box for Rails
<div class="field">
<%= f.label "Select Sub City" %>
<% new_york_sub_cities = %w(manhattan bronx kings queens staten) %>
<%= select("store", "city", new_york_sub_cities.collect {|p| [ p, p ] }, {include_blank: ''}) %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment