Sha256: 56c922f8fb8c549910ecb28db861338c5f19e9d54159911dfb3b02b1d9e5f176
Contents?: true
Size: 782 Bytes
Versions: 13
Compression:
Stored size: 782 Bytes
Contents
InlineForms::SPECIAL_COLUMN_TYPES[:geo_code_curacao]=:string # geo_code_curacao def geo_code_curacao_show(object, attribute) attribute_value = object.send(attribute).presentation rescue nil link_to_inline_edit object, attribute, attribute_value end def geo_code_curacao_edit(object, attribute) attribute_value = object.send(attribute).presentation rescue nil out = text_field_tag attribute, attribute_value out << '<script> $( "#geo_code_curacao" ).autocomplete({ source: "/geo_code_curacao", minLength: 2, }); </script>'.html_safe end def geo_code_curacao_update(object, attribute) # extract the geocode geo_code = params[attribute].scan(/\d\d\d\d\d\d/).to_s || nil object[attribute.to_sym] = GeoCodeCuracao.new(geo_code).valid? ? geo_code : nil end
Version data entries
13 entries across 13 versions & 1 rubygems