How to set default selected value for Rails SimpleForm select box How to set default selected value for Rails SimpleForm select box ruby-on-rails ruby-on-rails

How to set default selected value for Rails SimpleForm select box


Use the following:

selected: 1


You can now use the following:

<%= f.association :store, selected: 1 %>