# File lib/formtastic.rb, line 1200 def find_selected_values_for_column(method, options) if object.respond_to?(method) collection = [object.send(method)].compact.flatten label, value = detect_label_and_value_method!(collection, options) [*collection.map { |o| send_or_call(value, o) }].compact else [] end end