开发者

Select tag include blank behavior in rails 3.1 rc4

  <%= select_tag 'pseudo-attribute', options_for_select(...), :include_blank => 'Nowhere'%>

This开发者_高级运维 tag used to include a blank option with "Nowhere" but now the text box is blank, does anyone know why that is?


Now the code for the select tag is (Rails 3.1.0.rc4)

  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

which means you have to replace :include_blank with :prompt. Use include blank if you want a blank option in your select field :)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜