Created
October 15, 2011 15:27
-
-
Save imustardsoft/1289708 to your computer and use it in GitHub Desktop.
examples from rails doc
This file contains 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
select_tag "people", options_from_collection_for_select(@people, "id", "name"), :prompt => "Select something" | |
# => <select id="people" name="people"><option value="">Select something</option><option value="1">David</option></select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment