Module: ActionController::Macros::AutoComplete::ClassMethods
- Defined in:
- lib/action_controller/macros/auto_complete.rb
Overview
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:
Instance Method Summary collapse
Instance Method Details
#auto_complete_for(object, method, options = {}) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/action_controller/macros/auto_complete.rb', line 38 def auto_complete_for(object, method, = {}) define_method("auto_complete_for_#{object}_#{method}") do = { :conditions => [ "LOWER(#{method}) LIKE ?", '%' + params[object][method].downcase + '%' ], :order => "#{method} ASC", :limit => 10 }.merge!() @items = object.to_s.camelize.constantize.find(:all, ) render :inline => "<%= auto_complete_result @items, '#{method}' %>" end end |