aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/auto_complete.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 07:25:44 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 07:25:44 +0000
commitcadcd9e7144394ecc9df01961191d20e5e219a37 (patch)
tree6014e509c117efbb6cb20e806388e73f7d34f8c6 /actionpack/lib/action_controller/auto_complete.rb
parent24a8cb1e5600d95a51323982e4d7508eb22c8b1f (diff)
downloadrails-cadcd9e7144394ecc9df01961191d20e5e219a37.tar.gz
rails-cadcd9e7144394ecc9df01961191d20e5e219a37.tar.bz2
rails-cadcd9e7144394ecc9df01961191d20e5e219a37.zip
Fix IE 30-sec timeout bug, make auto_complete_for even more delicious #1572 [Thomas Fuchs]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1579 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/auto_complete.rb')
-rw-r--r--actionpack/lib/action_controller/auto_complete.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/auto_complete.rb b/actionpack/lib/action_controller/auto_complete.rb
index c2590c66b4..685bb63ff9 100644
--- a/actionpack/lib/action_controller/auto_complete.rb
+++ b/actionpack/lib/action_controller/auto_complete.rb
@@ -8,6 +8,17 @@ module ActionController
#
# # 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