Add CSS class in collection_select via html_options in Rails

0

Community, I present a problem with the colletion in Rails since I do not know how to place a CSS class inside the colletion. I'm doing it this way:

    
asked by Leonard J. Ávila S. 28.08.2017 в 17:46
source

1 answer

0

collection_select accepts a hash as the last argument where you can specify the html attributes, including class ; for example:

<%= collection_select(:project, :name, @projects, :id, :name, { prompt: "Seleciona proyecto"}, { class: "mi-clase"} ) %>
    
answered by 28.08.2017 / 17:59
source