Displaying 2 results from an estimated 2 matches for "submit_form_to_popup".
2006 Nov 11
2
Setting Ajax.Updater update target to alternate window?
I need to make a call to Ajax.Updater(container, url, options) where
container needs to be a DOM element in another window.
So assuming my form is in window "X", can I specify a DOM element in
window "Y" as the update target for my AJAX call?
If I can, what is the correct syntax?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2007 Mar 02
12
Prototype: Ajax.Request w/asynchronous: false
All,
I have the following Ajax call:
new Ajax.Request(action, {asynchronous: false,
method: ''post'',
parameters: params_to_pass,
evalScripts: true});
The action that I''m calling is using render :update to send back
Javascript. When asynchronous is set to true above, then the Javascript
is executed (because of evalScripts: