Dropdown

suggest change

Standard example:

@models = Model.all
select_tag "models", options_from_collection_for_select(@models, "id", "name"), {}

This will generate the following HTML: David

The last argument are options, which accepts the following:

{
     multiple: false, 
     disabled: false, 
     include_blank: false, 
     prompt: false
}

More examples can be found: http://apidock.com/rails/ActionView/Helpers/FormTagHelper/select_tag

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Form Helpers:
*Dropdown

Table Of Contents
38Form Helpers
55CSV