Sha256: 8020463c677e4cd4eaef6015bd74e77af25a91c898a9136ee392a6207d96ecb8
Contents?: true
Size: 538 Bytes
Versions: 68
Compression:
Stored size: 538 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[attribute].blank? ? "<i class='fi-plus'></i>".html_safe : object[attribute] end def text_field_edit(object, attribute) text_field_tag attribute, (object.send attribute.to_sym), :class => 'input_text_field' # for abide: , :required => true end def text_field_update(object, attribute) object.send :write_attribute, attribute.to_sym, params[attribute.to_sym] end
Version data entries
68 entries across 68 versions & 1 rubygems