Re: Can we Integrate reCaptcha with GWT FormPanel

2010-04-17 Thread GWT Groups
Thanks Mr. Carlo , I very much surprised after seeing that i getting too much help from all around. I am very glad after getting the such a good response. now I have became the fan of this google groups. Thanks for your support and kindness, ones again i want to say very very thank you and all t

Re: Can we Integrate reCaptcha with GWT FormPanel

2010-04-16 Thread BimboJones
hi, you can use the recaptcha library for java is pretty simple to use: On client: final RecaptchaWidget rw = new RecaptchaWidget(RECAPTCHAKEY); panel.add(new HTML("")); TextBox response = new TextBox(); response.getElement().setId("recaptcha_response_field"); panel.add(response); you can make

Re: Can we Integrate reCaptcha with GWT FormPanel

2010-04-14 Thread Carlo
Hi Ankit, Maybe, I can help you. I write below the code than I use to do Captcha check. In the form panel: # FormPanel form = new FormPanel(); VerticalPanel vp = new VerticalPanel(); HorizontalPanel hp = new Horizonta

Re: Can we Integrate reCaptcha with GWT FormPanel

2010-04-14 Thread cretz
IIRC, recaptcha doesn't allow you to retrieve to element name, so it is not handled via a common form submission. If you must, add two hiddens to your panel and add a submit handler. In the submit handler, just populate the hidden widgets with the challenge and response from the recaptcha JS API. I

Can we Integrate reCaptcha with GWT FormPanel

2010-04-13 Thread GWT Groups
Hello Guys, First of i want to say thanks to all you for help me a lot. THANKS ONES AGAIN. Now i have got stuck in an another problem, I want to reCaptcha into my GWT FormPanel, I don't know how to do this. I have done lot of efforts but i fail to do this. I succeed to run reCa