module ActionView::Helpers::FormHelper

Public Instance Methods

autocomplete_field(object_name, method, source, options ={}) click to toggle source

Returns an input tag of the “text” type tailored for accessing a specified attribute (identified by method) and that is populated with jQuery’s autocomplete plugin.

Examples

autocomplete_field(:post, :title, author_autocomplete_path, :size => 20)
# => <input type="text" id="post_title" name="post[title]" size="20" value="#{@post.title}"  data-autocomplete="author/autocomplete"/>
# File lib/autocomplete-activeadmin/form_helper.rb, line 11
def autocomplete_field(object_name, method, source, options ={})
  options["data-autocomplete"] = source
  text_field(object_name, method, rewrite_autocomplete_option(options))
end