Sha256: dc05c6ae987b6f36318cb77315e395a6e30010060708dac321bb9b9b6f2e1389
Contents?: true
Size: 416 Bytes
Versions: 14
Compression:
Stored size: 416 Bytes
Contents
# -*- encoding : utf-8 -*- InlineForms::SPECIAL_COLUMN_TYPES[:text_field]=:string def text_field_show(object, attribute) link_to_inline_edit object, attribute, object.send(attribute) end def text_field_edit(object, attribute) text_field_tag attribute, object[attribute], :class => 'input_text_field' end def text_field_update(object, attribute) object[attribute.to_s.to_sym] = params[attribute.to_sym] end
Version data entries
14 entries across 14 versions & 1 rubygems