Forum OpenACS Development: Re: nested group problem

Collapse
7: Re: nested group problem (response to 6)
Posted by Gerald Stermsek on
tcl:
multirow create test a b c
multirow append test feedback shirt blue
multirow append test rating shirt blue

adp:
@test.a@<br>
<group column="a">
@test.b@<br>
<group column="b">
@test.c@<br>
</group>
</group>
</group>

delivers:

feedback
shirt
blue
blue

I want:

feedback
shirt
blue
rating
shirt
blue

when in <group column="b"> the template processer
does not recognize the change in column a and
prints two times column c

that's my problem.
I did it in tcl and passed it in onevalue, by the way

regards,
Gerald