How to have a drop down <select> field in a rails form?
I am creating a scaffold - rails g scaffold Contact email:string email_provider:string but I want the email provider to be a drop down (with gmail/yahoo/msn as options) and not a text field. How can I do this ? You can take a look at the Rails documentation . Anyways , in your form : <%= f.collection_select :provider_id, Provider.order(:name),:id,:name, include_blank: true %> As you can guess , you should predefine email-providers in another model - Provider , to have where to select them from . Or for custom options <%= f.select :desired_attribute, ['option1', 'option2']%> You create the