简体   繁体   中英

How to add please select in select_tag rails 4

my select options from the controller brings as an option could add "please select" Disabled and selected. Thankyou

      <div class="form-group">
      <%= f.label :trade_id, 'Empresa', :class => 'col-lg-2 control-label' %>
      <div class="col-lg-10">
      <%= select_tag "trade_id", options_from_collection_for_select(@trade, "id", "name"),:class => 'form-control' %>
      </div>
    </div>

我认为您的问题可以通过在select_tag中添加“ prompt:”参数来解决,如下所示:

<%= select_tag "trade_id", options_from_collection_for_select(@trade, "id", "name"),:class => 'form-control', prompt: 'please select' %>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM