Sha256: 646ce91e801c98d75ced561e3657d04ce2120767ba93b76ae2f52b80c15efb30

Contents?: true

Size: 912 Bytes

Versions: 52

Compression:

Stored size: 912 Bytes

Contents

# -*- encoding : utf-8 -*-
InlineForms::SPECIAL_COLUMN_TYPES[:dropdown_with_values]=:integer

# dropdown_with_values
def dropdown_with_values_show(object, attribute)
  values = attribute_values(object, attribute)
  link_to_inline_edit object, attribute, object.send(attribute) ? t(values.assoc(object.send(attribute))[1]) : "<i class='fi-plus'></i>".html_safe
end
def dropdown_with_values_edit(object, attribute)
  # the leading underscore is to avoid name conflicts, like 'email' and 'email_type' will result in 'email' and 'email[email_type_id]' in the form!
  values = attribute_values(object, attribute)
  collection_select( ('_' + object.class.to_s.underscore).to_sym, attribute.to_sym, values, 'first', 'last', :selected => object.send(attribute))
end
def dropdown_with_values_update(object, attribute)
  object[attribute.to_sym] = params[('_' + object.class.to_s.underscore).to_sym][attribute.to_sym]
end

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
inline_forms-3.1.5 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.1.4 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.1.3 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.1.2 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.1.1 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.1.0 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.58 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.57 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.56 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.55 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.54 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.53 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.52 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.51 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.50 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.49 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.48 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.47 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.46 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-3.0.45 lib/app/helpers/form_elements/dropdown_with_values.rb