Hi Antonio,
On Aug 9, 2006, at 12:11 PM, Antonio Gallardo wrote:
pipelineUtil.processToStream("render/renderPage", bizData, fos); [1]
Because I need to use java inside the jxTemplate, I needed to add a
javascript flow function to call the jxTemplate pipeline. My problem
is I don't know how to get the whole bizDataObject from javascript
flow
Can you add another level of indirection?:
final Whatever data = whatever;
pipelineUtils.processToStream (
"render/renderPage",
new Object() {
public Whatever value = data;
},
fos
);
Then in your JXT, ${value} is the object you want.
—ml—
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]