diff options
author | Thomas Fuchs <thomas@fesch.at> | 2005-10-15 05:08:59 +0000 |
---|---|---|
committer | Thomas Fuchs <thomas@fesch.at> | 2005-10-15 05:08:59 +0000 |
commit | 09aae0a275b46b653e2386e35658d0455fd5763a (patch) | |
tree | ddf22beed74159fe25dea7a5c5bb02f726e21401 /actionpack/lib | |
parent | 35d543f42228d7ca08e3d4e9a78bb54414fd3c5e (diff) | |
download | rails-09aae0a275b46b653e2386e35658d0455fd5763a.tar.gz rails-09aae0a275b46b653e2386e35658d0455fd5763a.tar.bz2 rails-09aae0a275b46b653e2386e35658d0455fd5763a.zip |
Updated and clarified documentation for JavaScriptHelper to be more concise about the various options for including the JavaScript libs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2608 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/javascript_helper.rb | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb index 6fe90f970c..5637d7f5ce 100644 --- a/actionpack/lib/action_view/helpers/javascript_helper.rb +++ b/actionpack/lib/action_view/helpers/javascript_helper.rb @@ -7,10 +7,20 @@ module ActionView # actions in your controllers without reloading the page, but still update certain parts of it using injections into the # DOM. The common use case is having a form that adds a new element to a list without reloading the page. # - # To be able to use the JavaScript helpers, you must either call <tt><%= define_javascript_functions %></tt> (which returns all - # the JavaScript support functions in a <script> block) or reference the JavaScript library using - # <tt><%= javascript_include_tag "prototype" %></tt> (which looks for the library in /javascripts/prototype.js). The latter is - # recommended as the browser can then cache the library instead of fetching all the functions anew on every request. + # To be able to use the JavaScript helpers, you must include the Prototype JavaScript Framework and for some functions + # script.aculo.us (which both come with Rails) on your pages. Choose one of these options: + # + # * Use <tt><%= javascript_include_tag :defaults %></tt> in the HEAD section of your page (recommended): + # The function will return references to the JavaScript files created by the +rails+ command in your + # <tt>public/javascripts</tt> directory. Using it is recommended as the browser can then cache the libraries + # instead of fetching all the functions anew on every request. + # * Use <tt><%= javascript_include_tag 'prototype' %></tt>: As above, but will only include the Prototype core library, + # which means you are able to use all basic AJAX functionality. For the script.aculo.us-based JavaScript helpers, + # like visual effects, autocompletion, drag and drop and so on, you should use the method described above. + # * Use <tt><%= define_javascript_functions %></tt>: this will copy all the JavaScript support functions within a single + # script block. + # + # For documentation on +javascript_include_tag+ see ActionView::Helpers::AssetTagHelper. # # If you're the visual type, there's an AJAX movie[http://www.rubyonrails.com/media/video/rails-ajax.mov] demonstrating # the use of form_remote_tag. @@ -242,7 +252,7 @@ module ActionView end # Returns the javascript needed for a remote function. - # Takes the same arguments as link_to_remote + # Takes the same arguments as link_to_remote. # # Example: # <select id="options" onchange="<%= remote_function(:update => "options", :url => { :action => :update_options }) %>"> @@ -324,7 +334,7 @@ module ActionView # refers to the new field value. # # Additionally, you may specify any of the options documented in - # +link_to_remote. + # link_to_remote. def observe_field(field_id, options = {}) if options[:frequency] and options[:frequency] > 0 build_observer('Form.Element.Observer', field_id, options) @@ -348,6 +358,8 @@ module ActionView # Returns a JavaScript snippet to be used on the AJAX callbacks for starting # visual effects. # + # This method requires the inclusion of the script.aculo.us JavaScript library. + # # Example: # <%= link_to_remote "Reload", :update => "posts", # :url => { :action => "reload" }, @@ -373,6 +385,8 @@ module ActionView # changed. By default, the action called gets the serialized sortable # element as parameters. # + # This method requires the inclusion of the script.aculo.us JavaScript library. + # # Example: # <%= sortable_element("my_list", :url => { :action => "order" }) %> # @@ -399,6 +413,8 @@ module ActionView # Makes the element with the DOM ID specified by +element_id+ draggable. # + # This method requires the inclusion of the script.aculo.us JavaScript library. + # # Example: # <%= draggable_element("my_image", :revert => true) # @@ -413,6 +429,8 @@ module ActionView # and make an AJAX call By default, the action called gets the DOM ID of the # element as parameter. # + # This method requires the inclusion of the script.aculo.us JavaScript library. + # # Example: # <%= drop_receiving_element("my_cart", :url => { :controller => "cart", :action => "add" }) %> # |