Are you using latest t5 snapshot or 5.0.X.X release? If latest snapshot, just use like context="[user.id,user.name]" If not, there are 2 ways: 1. Do in java public Object [] getContextValue() { return new Object[2]{user.id, user.name}; } 2. Use list binding in t5commons library http://code.google.com/p/tapestry5-components/
Thanks DH ----- Original Message ----- From: "丁振波" <zenberg.d...@gmail.com> To: "Tapestry users" <users@tapestry.apache.org> Sent: Wednesday, March 04, 2009 3:34 PM Subject: component parameter binding question > Hello guys, below is my case code: > > <t:parameter name="nameCell"> > <t:pagelink page="edit" context="user.id">${user.name}</t:pagelink> > </t:parameter> > > my question is, how can I pass mutil param value in context , is there any > format like "user.id; user.name"? > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > >