If you define the checkbox yourself, try adding this:
<t:mixins=&quot;prepareEvent&quot;..>


public class PrepareEvent {
    @Parameter
    private Object[] context;

    @Inject
    private ComponentResources componentResources;

    void setupRender() {
        componentResources.triggerEvent("prepare", context, null);
    }
}


One can now specify a backing method onPrepareFromX() where t:id="X".
So for every component (that normally does not have a backing method
"listener", one can just add this mixin and write the backing method
accordingly.



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Problem-with-checkboxes-in-dynamic-tables-tp5718028p5718167.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

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

Reply via email to