diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-26 00:32:52 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-26 00:32:52 +0000 |
commit | 9dac6b759f57d93247ba6e8b8d8c7b9d5638dc22 (patch) | |
tree | ee6d1266fddd827911554195847358e12e172cb9 /actionpack/lib | |
parent | 64d655628c5b61cf21fc165d6c669325c3b5b6f4 (diff) | |
download | rails-9dac6b759f57d93247ba6e8b8d8c7b9d5638dc22.tar.gz rails-9dac6b759f57d93247ba6e8b8d8c7b9d5638dc22.tar.bz2 rails-9dac6b759f57d93247ba6e8b8d8c7b9d5638dc22.zip |
auto_complete_field takes a :method option so you can GET or POST. Closes #8120.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6851 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/java_script_macros_helper.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb index 0d9e87fba0..d346f0367c 100644 --- a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb +++ b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb @@ -139,6 +139,8 @@ module ActionView # <tt>:select</tt>:: Pick the class of the element from which the value for # insertion should be extracted. If this is not specified, # the entire element is used. + # <tt>:method</tt>:: Specifies the HTTP verb to use when the autocompletion + # request is made. Defaults to POST. def auto_complete_field(field_id, options = {}) function = "var #{field_id}_auto_completer = new Ajax.Autocompleter(" function << "'#{field_id}', " @@ -152,6 +154,7 @@ module ActionView js_options[:select] = "'#{options[:select]}'" if options[:select] js_options[:paramName] = "'#{options[:param_name]}'" if options[:param_name] js_options[:frequency] = "#{options[:frequency]}" if options[:frequency] + js_options[:method] = "'#{options[:method].to_s}'" if options[:method] { :after_update_element => :afterUpdateElement, :on_show => :onShow, :on_hide => :onHide, :min_chars => :minChars }.each do |k,v| |