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 which also gets posted alongs

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 Quiry

Loop of checkboxes in form

2017-01-23 Thread Nathan Quirynen
Hi, What is the best practice for showing a (dynamic) list of objects as checkboxes in a form and posting the selection. I have found some examples, but they all have the need of persisting data in the http session, which I'd like to avoid as much as possible. Or is this the only way to achie