Binding an array and accessing elements of that array in a template

2012-09-04 Thread Russell John-Baptiste
Sorry if this was answered or shown else where but i'm not seeing it. I have an array called MonthlyBills[12] in my page class. In my template, how can I reference each index? ...etc. does not work. Cheers.

Re: Tapestry 5 Book EAP Launched

2012-08-01 Thread Russell John-Baptiste
http://ephemurl.com/  Cheers -Russell From: Igor Drobiazko To: Tapestry users Sent: Wednesday, August 1, 2012 4:21 PM Subject: Re: Tapestry 5 Book EAP Launched While the ticket is being processed, I'm looking for a service which will allow me to deliver PD

Re: Updating a size 20 map with On Change event of 20 select components

2012-07-25 Thread Russell John-Baptiste
Thanks Carsten and Jonathan, I really appreciate the input... As usual, I made this harder than it needed to be. I have a business requirement to fufill which is why I had to do it this way. I got it working... In my page class I have:  public  User getGroupUser(){        return groupMap.get(g

Updating a size 20 map with On Change event of 20 select components

2012-07-23 Thread Russell John-Baptiste
I am trying to wrap my head around how to do this in tapestry.  I have a form with 20 select components that are created with the loop component.  Given a Map groupMap... Each select component's value (user) is a value in the map.  Each label (group) for each select is the key of the map when