开发者

how to specify label for select in simpleform rails

开发者 https://www.devze.com 2023-02-16 03:58 出处:网络
<%= f.association :opportunity_status, :label => \"Status\", :input_html => {} %> <%= f.select :source_type, options_for_select([\"lead\",\"vteam\"],[\"lead\"]) %>
<%= f.association :opportunity_status, :label => "Status", :input_html => {} %>
<%= f.select :source_type, options_for_select(["lead","vteam"],["lead"]) %>

On first line every thing is OK. On second line if I 开发者_Python百科attach label the way I did in first line it show an error.

How can I specify label for select using simpleform?


This is because f.select is not a simple_form method and does not support :label

This should work for you w/ simple form

<%= f.input :source_type, :label => "Lead or VTeam", :collection => ["lead","vteam"], :selected => "lead" %>

Hope this helps

0

精彩评论

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