Hi
Can anyone tell me when i should be using the different select helpers
select(object, method, collection, options = {}, html_options = {})
select_tag(name, option_tags = nil, options = {})
collection_select(object, method, collection, value_method, text_method,
options = {}, html_options = {})
Is that all of them? I understand the advantages of using
collection_select over the others, as it allows me to pass in a hash,
but other than that, the whole thing confuses me.
Thanks