Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
As I wrote in the initial reply you can bypass the tapestry decoding bit and work with the request parameters directly if you are not generating the links from tapestry anyway. The post i shared does not explain how to use another delimiter, it shows you how to have a single parameter contain mult

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
That topic has nothing to do with Tapestry... Tapestry is rejecting my (comma) delimited list. The only thing I get from that topic is using another delimiter than comma. I can do that of course and that was definitely the point of my question, but what delimiter is allowed by Tapestry? __

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
Something like this answer: http://stackoverflow.com/a/15849972 On Sat, May 9, 2015 at 5:38 PM, Poder, Jacob wrote: > Sorry, I don't follow, how can I "pass the list of ids as a single > multivalue parameter"? > > > Fra: Chris Poulsen [mailingl...@nesluop

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
Sorry, I don't follow, how can I "pass the list of ids as a single multivalue parameter"? Fra: Chris Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 16:52 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program I was thinking

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
I was thinking that you could pass the list of ids as a single multivalue parameter and then use request.getParameterValues to retrieve the values for the parameter (so url encoding of "," would not be an issue) On Wed, May 6, 2015 at 5:00 PM, Poder, Jacob wrote: > I'll consider overriding the U