On Thu, Nov 29, 2012 at 8:48 AM, Pillar <sotodel...@hotmail.com> wrote:

> I've been reading other posts but nothing seems to work for me.
>
>
> <t:loop source = "users" value = "u" formState = "none">
>     <t:loop source = "${u.userServices}" value = "userservice" formState =
> "none">
>     </t:loop>
> </t:loop>
>
> Inside both loops I try to access properties of u and userservice.
>
>
>From what I can tell, the source of the inner loop shouldn't be using an
expansion. Write it as:

<t:loop source = "u.userServices" value = "userservice" formState ="none">

Take a look at: http://tapestry.apache.org/component-templates.html, there
is a warning there in the "Expansions" section that covers the problem you
are seeing.

Reply via email to