On Wed, 29 Jan 2014 16:17:49 -0200, Dimitris Zenios <dimitris.zen...@gmail.com> wrote:

I have a list of 8 elements.I want to loop over the elements and every 3
elements or at beginning of list to Start with a <div> and end with a
</div>.

Resulting output should be
<div>
<item>
<item>
<item?
</div>
<div>
<item>
<item>
<item>
</div>
<div>
<item>
<item>
</div

So i though i will create a mixin that attaches to the loop and adds those
divs.I managed to almost make it work except one last case.After the last
element i want to close my previous div even if the index is not % 3.In
order to know that loop is in the last element i need the iterator of the
loop.

I'd use pure DOM rewriting instead. tapestry-xpath is extremely helpful for these situations. Don't expect the Tapestry team to expose implementation details: they don't like it.

--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tapestry.apache.org
For additional commands, e-mail: dev-h...@tapestry.apache.org

Reply via email to