Hi,

Form#serialize[1] returns a Hash object[2] when you call it with
'true' as the getHash parameter (as you are).  So just do that
*before* your Ajax.Updater call, and add your further items to the
Hash, and then pass the Hash into the updater call.

[1] http://prototypejs.org/api/form/serialize
[2] http://prototypejs.org/api/hash

HTH,
--
T.J. Crowder
tj / crowder software / com
Independent Software Engineer, consulting services available


On Jan 23, 8:53 am, coruscant <ca...@two-wings.net> wrote:
> Hello All,
>
> I want to use Ajax.updater in one of my PHP scripts. I would like to
> send all the variables of a form to the server, therefore I use the
> form serialize method. Anyway I need to tell the server other
> variables that are not and can not be in the form. Is it somehow
> possible to do this?
>
> I tried things like:
>
> new Ajax.Updater('rettab', '$script', {
>   method: 'post',
>   parameters: $('thisform').serialize(true), {variable1: 'input',
> variable2: 'otherinput', variable3: 'somestring'},
>   evalScripts: 'true'
>   });
>
> Also this way does not work:
>
> new Ajax.Updater('rettab', '$script', {
>   method: 'post',
>   parameters: {$('thisform').serialize(true), variable1: 'input',
> variable2: 'otherinput', variable3: 'somestring'},
>   evalScripts: 'true'
>   });
>
> And this way doesn't work either:
>
> new Ajax.Updater('rettab', '$script', {
>   method: 'post',
>   parameters: $('thisform').serialize(true),
>   parameters: {variable1: 'input', variable2: 'otherinput', variable3:
> 'somestring'},
>   evalScripts: 'true'
>   });
>
> Does anybody have an idea?
>
> Thanks in advance.
>
> Benedikt.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to