Sha256: ff55c97b1349746603be5b009bd867284b7e01772a4d55f67e4fb83009c33e43

Contents?: true

Size: 814 Bytes

Versions: 82

Compression:

Stored size: 814 Bytes

Contents

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, values[object.send(attribute)][1]
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

82 entries across 82 versions & 1 rubygems

Version Path
inline_forms-1.3.12 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.11 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.10 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.9 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.8 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.7 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.6 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.5 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.4 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.3 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.2 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.1 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.3.0 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.9 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.8 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.7 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.5 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.4 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.3 lib/app/helpers/form_elements/dropdown_with_values.rb
inline_forms-1.2.2 lib/app/helpers/form_elements/dropdown_with_values.rb