mailto:[EMAIL PROTECTED]
> Sent: 28 August 2008 20:33
> To: Tapestry users
> Subject: Re: Event handlers with multiple parameters
>
> Em Thu, 28 Aug 2008 08:21:50 -0300, Blower, Andy
> <[EMAIL PROTECTED]> escreveu:
>
> > mark(boolean checked, String[] itemIds)
> >
Em Thu, 28 Aug 2008 08:21:50 -0300, Blower, Andy
<[EMAIL PROTECTED]> escreveu:
mark(boolean checked, String[] itemIds)
mark(boolean checked, String... itemIds)
mark(boolean checked, List itemIds)
As far as I know, none of the would work because Tapestry would not handle
an event handler
(Sending again since the formatting was really bad and I have more to
add/clarify)
Hi, after quite a while using Tapestry I've got a situation where I need an
event handler that accepts an unknown amount multiple parameters.
mark(boolean checked, String[] itemIds)
mark(boolean checked, Str
Hi, after quite a while using Tapestry I've got a situation where I need an
event handler that accepts an unknown amount multiple parameters.
mark(boolean checked, String[] itemIds)
mark(boolean checked, String... itemIds)
mark(boolean checked, List itemIds)
I've tried these and the Last one wor