|
I'm using submit_to_remote as follows:
$prototype->submit_to_remote('somename', 'somevalue', {
url=>'someurl',
loading => 'some javascript code',
complete => 'some javascript code',
});
clicking the button does not serialize the form.
Am I doing something wrong? The documentation states:
"""
Returns a button input tag that will submit a form using XMLHttpRe-
quest in the background instead of a typical reloading via POST.
"""
|