Hi,

I'm guessing I'm doing something wrong but it's hardly obvious. I have a Form, with a LinkSubmit and a Submit:

   <t:form t:id="myForm">
       <t:linksubmit t:id="myLink">link</t:linksubmit>
       <t:submit t:id="mySubmit" />
   </t:form>

   public void onSuccessFromMyForm()
   {
       LOG.debug("onSuccessFromMyForm");
   }

   public void onSelectedFromMyLink()
   {
       LOG.debug("onSelectedFromMyLink");
   }

   public void onSelectedFromMySubmit()
   {
       LOG.debug("onSelectedFromMySubmit");
   }


The form is submitted and the listener(s) are called when I click the submit, however nothing all all happens when I click the link.

p.

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

Reply via email to