Ajax.Request and methods that inherit it(like autocompleter) accept
JSON encoded objects as parameters (AFAIK)
/* Set isMirror to something */
isMirror = myobj.isMirror();
/* OR if this is a server-side determined value echo it */
isMirror = <?php if(something){echo 'true';}else{echo 'false';} ?>;
/* Another example, get the value of some text node and pass it as a
param */
myVal = $('textID').value;
myParam:{action:'save',mirror:isMirror, value:myVal} //setup JSON
encoded object
/* ...Include it in your call to the server */
{ parameters: myParam}
--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---