I am having problems getting an event handler to fire for a submit button. Here is the relevant part from the .tml

<form t:type="form" t:id="myForm">
<input type="submit" value="Submit" t:type="submit" t:id="submitButton"/>
</form>


and here is the handler from the .java file:

   @OnEvent(component="submitButton")
   void onSubmitButton()
   {
       System.out.println("Submit Button Handler");
   }

Have I overlooked something silly?

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to