Method: Formtastic::Inputs::SelectInput#extra_input_html_options

Defined in:
lib/formtastic/inputs/select_input.rb

#extra_input_html_optionsObject



197
198
199
200
201
202
203
204
# File 'lib/formtastic/inputs/select_input.rb', line 197

def extra_input_html_options
  {
    :multiple => multiple?,
    :name => multiple? ? input_html_options_name_multiple : input_html_options_name
  }
  
  
end