From c5588437d3651ce1a72b31a7a4858cd1660dc7df Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Tue, 6 Nov 2007 23:23:37 +0000 Subject: Document :with option for link_to_remote. Closes #8765 [ryanb] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8103 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 2 ++ actionpack/lib/action_view/helpers/prototype_helper.rb | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 599f0e702b..fc80c0dded 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Document :with option for link_to_remote. Closes #8765 [ryanb] + * Document :minute_step option for time_select. Closes #8814 [brupm] * Explain how to use the :href option for link_to_remote to degrade gracefully in the absence of JavaScript. Closes #8911 [vlad] diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb index b7da182b35..4b502b0e5b 100644 --- a/actionpack/lib/action_view/helpers/prototype_helper.rb +++ b/actionpack/lib/action_view/helpers/prototype_helper.rb @@ -136,6 +136,14 @@ module ActionView # default this is the current form, but # it could just as well be the ID of a # table row or any other DOM element. + # :with:: A JavaScript expression specifying + # the parameters for the XMLHttpRequest. + # Any expressions should return a valid + # URL query string. + # + # Example: + # + # :with => "'name=' + $('name').value" # # You can generate a link that uses AJAX in the general case, while # degrading gracefully to plain link behavior in the absence of -- cgit v1.2.3