Re: Loop of checkboxes in form

2017-01-25 Thread Nathan Quirynen
Thanks all for your answers. And yes JumpStart has been a reference for me lots of times, so thank you for that! In my search I've found that Tapestry actually has a component that does what I need:

Re: Loop of checkboxes in form

2017-01-23 Thread Thiago H. de Paula Figueiredo
On Mon, Jan 23, 2017 at 9:21 AM, JumpStart < geoff.callender.jumpst...@gmail.com> wrote: > Another way without @Persist: > > http://jumpstart.doublenegative.com.au/jumpstart7/examples/tables/ > loopwithdeletecolumn1 Tapestry JumpStart providing us the correct way of doing stuff again.

Re: Loop of checkboxes in form

2017-01-23 Thread JumpStart
Another way without @Persist: http://jumpstart.doublenegative.com.au/jumpstart7/examples/tables/loopwithdeletecolumn1 > On 23 Jan 2017, at 7:14 PM, Lance Java wrote: > > If you want to avoid http session you could maintain a hidden text field on > the page

Re: Loop of checkboxes in form

2017-01-23 Thread Lance Java
If you want to avoid http session you could maintain a hidden text field on the page which also gets posted alongside the checkboxes. The text field contains a comma separated list of the checkbox ids (or maybe just a count if index based naming convention) On 23 Jan 2017 10:07 a.m., "Nathan