On Thu, 18 Jun 2015 14:47:51 -0300, Casey Link <ca...@outskirtslabs.com> wrote:

Hi again,

Hi!

Request event 'remove' (on component mypackage/MyPage) was not handled; you must provide a matching event handler method in the component or in one of its containers.
   Object onRemoveItem(Long id) {
   Object onAddCourseModule(Long id) {

Your event handlers are not matching the event names, so they don't actually handle the event. For a "remove" event, the event handler method name should be "onRemove" (or any method annotated with @OnEvent("remove"). The context of the EventLink must also match the event handler method parameters.

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

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

Reply via email to