" />
开发者

Capitalize the string in the options_from_collection_for_select

I have a very small silly doubt .

i have a line <%= select_tag "kind", options_from_collection_for_select(@blogs, :id, :name) %>

this shows the blog name in small case , how to capitalize it here ..

I am using rails 2.3.开发者_运维技巧11


I recommend creating a virtual attribute, say display_name that looks something like:

def display_name
  name.capitalize
end

And your select tag will now look like:

<%= select_tag "kind", options_from_collection_for_select(@blogs, :id, :display_name) %>

Hope that helps.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜