method
submit_to_remote
v2.1.0 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers::PrototypeHelper
- 1.0.0
- 1.1.6 (0)
- 1.2.6 (0)
- 2.0.3 (32)
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.8 (0)
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
submit_to_remote(name, value, options = {})
public
Returns a button input tag with the element name of name and a value (i.e., display text) of value that will submit form using XMLHttpRequest in the background instead of a regular POST request that reloads the page.
# Create a button that submits to the create action # # Generates: <input name="create_btn" onclick="new Ajax.Request('/testing/create', # {asynchronous:true, evalScripts:true, parameters:Form.serialize(this.form)}); # return false;" type="button" value="Create" /> <%= submit_to_remote 'create_btn', 'Create', :url => { :action => 'create' } %> # Submit to the remote action update and update the DIV succeed or fail based # on the success or failure of the request # # Generates: <input name="update_btn" onclick="new Ajax.Updater({success:'succeed',failure:'fail'}, # '/testing/update', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this.form)}); # return false;" type="button" value="Update" /> <%= submit_to_remote 'update_btn', 'Update', :url => { :action => 'update' }, :update => { :success => "succeed", :failure => "fail" }
options argument is the same as in form_remote_tag.