From c5d54be746473ce5610e5e6de51f6b9d2495c935 Mon Sep 17 00:00:00 2001 From: Daniel Lopes Date: Tue, 3 May 2011 11:39:27 -0300 Subject: fix select_tag to have the same behavior of select --- .../lib/action_view/helpers/form_tag_helper.rb | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb') diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 49aa434020..9e0f8f32b7 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -74,6 +74,8 @@ module ActionView # ==== Options # * :multiple - If set to true the selection will allow multiple choices. # * :disabled - If set to true, the user will not be able to use this input. + # * :include_blank - If set to true, an empty option will be create + # * :prompt - Create a prompt option with blank value and the text asking user to select something # * Any other key creates standard HTML attributes for the tag. # # ==== Examples @@ -99,18 +101,26 @@ module ActionView # # => # + # select_tag "people", options_from_collection_for_select(@people, "id", "name"), :include_blank => true + # # => + # + # select_tag "people", options_from_collection_for_select(@people, "id", "name"), :prompt => "Select something" + # # => + # # select_tag "destination", "", :disabled => true # # => def select_tag(name, option_tags = nil, options = {}) html_name = (options[:multiple] == true && !name.to_s.ends_with?("[]")) ? "#{name}[]" : name - if blank = options.delete(:include_blank) - if blank.kind_of?(String) - option_tags = "".html_safe + option_tags - else - option_tags = "".html_safe + option_tags - end + + if options.delete(:include_blank) + option_tags = "".html_safe + option_tags + end + + if prompt = options.delete(:prompt) + option_tags = "".html_safe + option_tags end + content_tag :select, option_tags, { "name" => html_name, "id" => sanitize_to_id(name) }.update(options.stringify_keys) end -- cgit v1.2.3