hi all,
i have a pagelink im my page with two context variables.
i would have expected, the link would render some sort of
.../pagename/contextvar1/contextvar2
so i could user the values in my
onActivate(Object[] context)
but renders
.../pagename/[contextvar1, contextvar2]
any ideas?
harald
class file:
public List<Object> getReportLinkContext() {
ArrayList<Object> result = new ArrayList<Object>();
result.add(new Integer(uploadItemIndex));
result.add(getConversationId());
return result;
}
tml:
<a t:type="PageLink" page="portal/pdfreport"
context="${reportLinkContext}">Bericht</a>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]