mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
50f0a73624
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1606 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
43 lines
No EOL
1.3 KiB
Ruby
43 lines
No EOL
1.3 KiB
Ruby
module ActionController
|
|
# 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.
|
|
module AutoComplete
|
|
def self.append_features(base) #:nodoc:
|
|
super
|
|
base.extend(ClassMethods)
|
|
end
|
|
|
|
module ClassMethods
|
|
def auto_complete_for(object, method, options = {})
|
|
define_method("auto_complete_for_#{object}_#{method}") do
|
|
find_options = {
|
|
:conditions => [ "LOWER(#{method}) LIKE ?", '%' + params[object][method] + '%' ],
|
|
:order => "#{method} ASC",
|
|
:limit => 10 }.merge!(options)
|
|
|
|
@items = object.to_s.camelize.constantize.find(:all, find_options)
|
|
|
|
render :inline => "<%= auto_complete_result @items, '#{method}' %>"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |