On 17 Dec 2004, at 13:22, angeloimm wrote:
I have this problem... i'm in a flow script wher by using showForm method i call a Form... now let's supppose i need to pass a variable to this form by using cocoon request... how can i do it? I have tried in all way but..... nothing to do; for now i'm able only to use this parameters by using cocoon session.
Thanks
a jx form? You can do this:
var message = "Hello, world!";
form.showForm("form-display-pipeline.jx", {"message": message});
and in your jx you can print out that value with:
<p>Your message is: ${message}</p>Is that what you meant?
Jon
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
