module InlineFormsHelper InlineForms::MIGRATION_TYPE_CONVERSION_LIST[:geo_code_curacao]=:string # geo_code_curacao def geo_code_curacao_show(object, attribute, values) attribute_value = object.send(attribute).presentation rescue nil link_to_inline_edit object, attribute, attribute_value, nil end def geo_code_curacao_edit(object, attribute, values) text_field_with_auto_complete :geo_code_curacao, :street, :skip_style => true end def geo_code_curacao_update(object, attribute, values) # extract the geocode geo_code = params[attribute.to_sym][:street].scan(/\d\d\d\d\d\d/).to_s || nil object[attribute.to_sym] = GeoCodeCuracao.new(geo_code).valid? ? geo_code : nil end end