2011-07-18 8 views

答えて

8

今のselectタグ用のコードは、あなたが:prompt:include_blankを交換する必要が意味している

def select_tag(name, option_tags = nil, options = {}) 
    html_name = (options[:multiple] == true && !name.to_s.ends_with?("[]")) ? "#{name}[]" : name 

    if options.delete(:include_blank) 
     option_tags = "<option value=\"\"></option>".html_safe + option_tags 
    end 

    if prompt = options.delete(:prompt) 
     option_tags = "<option value=\"\">#{prompt}</option>".html_safe + option_tags 
    end 

    content_tag :select, option_tags, { "name" => html_name, "id" => sanitize_to_id(name) }.update(options.stringify_keys) 
    end 

(Railsの3.1.0.rc4)です。選択フィールドに空白のオプションが必要な場合は、空白を使用してください:)

関連する問題