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:
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:
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"} ) %>