Le 21 févr. 06 à 15:17, Johannes Textor a écrit :
...Sure ? if I get this correctly, it is equivalent to
cocoon.sendPage("test.jx", { name : "test", id : "identifier" } );..
Yes, after rereading the question you're right, sorry for the noise.
So the problem is probably in test.jx.
-Bertran
Bertrand Delacretaz schrieb:
> Le 21 févr. 06 à 14:57, Angelo Immediata a écrit :
>
>> ...var bizData = {
>>
>> name : "test",
>> id : "identifier"
>> }
>>
>> cocoon.sendPage("test.jx", bizData);..
>
>
> Should be
>
> cocoon.sendPage("test.jx", { "bizData" : bizData} );
>
> -Bertrand
Sure ? if I
Le 21 févr. 06 à 14:57, Angelo Immediata a écrit :
...var bizData = {
name : "test",
id : "identifier"
}
cocoon.sendPage("test.jx", bizData);..
Should be
cocoon.sendPage("test.jx", { "bizData" : bizData} );
-Bertrand
smime.p7s
Description: S/MIME cryptographic signature
Hi all.
I'm using cocoon 2.1.7. I have noticed a strain thing in the cocoon.sendPage
method in a flowscript.
If i have an internal-only resource (i.e. let's call it "test.jx") it seems to
me that if in the flow script i do a similar thing:
var bizData = {
name : "test",
id : "identifier"
}
coc