Sha256: 213ab7d2e95046d70852bf9311c2fcc20352390576f125d91e8c6fd1e9773c19
Contents?: true
Size: 958 Bytes
Versions: 12
Compression:
Stored size: 958 Bytes
Contents
InlineForms::SPECIAL_COLUMN_TYPES[:dropdown_with_integers]=:integer # dropdown_with_integers generates a dropdown menu # with the given list of integers as options # # values must be a Range or a one-dimensional array of Integers def dropdown_with_integers_show(object, attribute) values = attribute_values(object, attribute) link_to_inline_edit object, attribute, values[object.send(attribute)][1] end def dropdown_with_integers_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.downcase).to_sym, attribute.to_sym, values, 'first', 'last', :selected => object.send(attribute)) end def dropdown_with_integers_update(object, attribute) object[attribute.to_sym] = params[('_' + object.class.to_s.downcase).to_sym][attribute.to_sym] end
Version data entries
12 entries across 12 versions & 1 rubygems