On Mon, 05 Oct 2009 23:24:38 +0200, Thiago H. de Paula Figueiredo <thiag...@gmail.com> wrote:
Em Mon, 05 Oct 2009 11:35:24 -0300, formpost <formp...@hotmail.com> escreveu:public void onSubmit() { for(Item i : items) { System.out.println("onSubmit: " + i.isToBeDeleted()); } }The event fired by the Submit component is named "selected". Form does not fire any event named "submit".
Actually, Form does fire a submit event after success/failure, so the above handler should be called. You're probably better off using onSuccess in most cases though. Either way, it certainly sounds like the form is never submitted because of some JavaScript problem. Debugging with Firebug might reveal some more info. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org
