mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
retreive custom type for input with collection
This commit is contained in:
parent
749c926140
commit
98c5413351
1 changed files with 1 additions and 1 deletions
|
@ -508,8 +508,8 @@ module SimpleForm
|
||||||
# collection is given.
|
# collection is given.
|
||||||
def default_input_type(attribute_name, column, options)
|
def default_input_type(attribute_name, column, options)
|
||||||
return options[:as].to_sym if options[:as]
|
return options[:as].to_sym if options[:as]
|
||||||
return :select if options[:collection]
|
|
||||||
custom_type = find_custom_type(attribute_name.to_s) and return custom_type
|
custom_type = find_custom_type(attribute_name.to_s) and return custom_type
|
||||||
|
return :select if options[:collection]
|
||||||
|
|
||||||
input_type = column.try(:type)
|
input_type = column.try(:type)
|
||||||
case input_type
|
case input_type
|
||||||
|
|
Loading…
Reference in a new issue