v1.2.6 - Show latest stable - 0 notes
  • 1.0.0 (0)
  • 1.1.6 (0)
  • 1.2.6 (4)
  • 2.0.3
  • 2.1.0
  • 2.2.1
  • 2.3.8
  • 3.0.0
  • 3.0.9
  • 3.1.0
  • 3.2.1
  • 3.2.8
  • 3.2.13
  • 4.0.2
  • 4.1.8
  • 4.2.1
  • 4.2.7
  • 4.2.9
  • 5.0.0.1
  • 5.1.7
  • 5.2.3
  • 6.0.0
  • 6.1.3.1
  • 6.1.7.7
  • 7.0.0
  • 7.1.3.2
  • 7.1.3.4
  • What's this?

DEPRECATION WARNING: This method will become a separate plugin when Rails 2.0 ships.

Example:

  # Controller
  class BlogController < ApplicationController
    auto_complete_for :post, :title
  end

  # View
  <%= text_field_with_auto_complete :post, title %>

By default, auto_complete_for limits the results to 10 entries, and sorts by the given field.

auto_complete_for takes a third parameter, an options hash to the find method used to search for the records:

  auto_complete_for :post, :title, :limit => 15, :order => 'created_at DESC'

For help on defining text input fields with autocompletion, see ActionView::Helpers::JavaScriptHelper.

For more examples, see script.aculo.us:

Show files where this module is defined (1 file)
Register or log in to add new notes.