Created
March 16, 2010 17:45
-
-
Save charliemaffitt/334285 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- update_city_menu.html.erb --> | |
<select id="neighborhood_field" name="search[city_field]"> | |
<%- if @state.cities.present? -%> | |
<%= options_from_collection_for_select(@state.cities, :id, :name) %> | |
<%- else -%> | |
<option value=''>There are no cities in the state you selected.</option> | |
<%- end -%> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment