Re: How can I interrupt form submit?

2009-10-31 Thread Thomas Broyer
On 31 oct, 08:46, danblack firewor...@gmail.com wrote: Here is my  entry point package test.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.dom.client.Document; import com.google.gwt.user.client.ui.FormPanel; public class Test_gwt_form implements EntryPoint

Re: How can I interrupt form submit?

2009-10-31 Thread danblack
Thank you very much! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com To unsubscribe from this group, send email to

How can I interrupt form submit?

2009-10-30 Thread danblack
I have a html-form form id=my_form input type=text input type=submit id=submitBtn / /form and I want to set a custom handler on a form submit event in my GWT application. I tried to use 1) formPanel.addSubmitHandler(submitHandler); 2)

Re: How can I interrupt form submit?

2009-10-30 Thread Thomas Broyer
On 30 oct, 18:17, danblack firewor...@gmail.com wrote: I have a html-form form id=my_form   input type=text   input type=submit id=submitBtn / /form and I want to set a custom handler on a form submit event  in my GWT application. I tried to use 1)