Merge pull request #19012 from LeandroSNunes/api_select_tag

Corrects the API to method select_tag
This commit is contained in:
Rafael Mendonça França 2015-02-20 13:21:48 -02:00
commit 1f5b58c079

@ -84,14 +84,13 @@ def form_tag(url_for_options = {}, options = {}, &block)
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
# * <tt>:include_blank</tt> - If set to true, an empty option will be created. If set to a string, the string will be used as the option's content and the value will be empty.
# * <tt>:prompt</tt> - Create a prompt option with blank value and the text asking user to select something.
# * <tt>:selected</tt> - Provide a default selected value. It should be of the exact type as the provided options.
# * Any other key creates standard HTML attributes for the tag.
#
# ==== Examples
# select_tag "people", options_from_collection_for_select(@people, "id", "name")
# # <select id="people" name="people"><option value="1">David</option></select>
#
# select_tag "people", options_from_collection_for_select(@people, "id", "name"), selected: ["1", "David"]
# select_tag "people", options_from_collection_for_select(@people, "id", "name", "1")
# # <select id="people" name="people"><option value="1" selected="selected">David</option></select>
#
# select_tag "people", "<option>David</option>".html_safe