Hiya, I have this snippet of tml:
<t:loop source="1..10" value="var:i" t:mixins="loopMixin"> ${var:i} </t:loop> and this Mixin: public class LoopMixin { void beginRender() { System.err.println("LoopMixin: @beginRender"); } void afterRender() { System.err.println("LoopMixin: @afterRender"); } } I see the beginRender method called 10 times but the afterRender method is never called. Is this a bug or is it defined Mixin behaviour? I was under the impression Mixins should receive all component render phase events...? Steve. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org