GWT 2.5 Validation problem

2012-11-09 Thread Daniel Mauricio Patino León
I want to validate a child Proxy (@Embeddable) on an EntityProxy with the new Validation frame work but i have a problem The code looks some thing like this: @ProxyFor(locator=BaseEntityLocator.class, value=Producto.class) public interface ProductoProxy extends EntityProxy { public void

Re: GWT 2.5 Validation problem

2012-11-09 Thread Daniel Mauricio Patino León
Seems that Superdev mode doesn't recompile the proxies I did a recompile of all the project. now works Fri Nov 09 14:51:20 GMT-600 2012 Validation INFO: informacionAduanera.fecha informacionAduanera.fecha notNull

[gwt-contrib] [google-web-toolkit] r8900 committed - Fix dynatablerf validation problem cause by overloaded method.

2010-09-30 Thread codesite-noreply
Revision: 8900 Author: cromwell...@google.com Date: Thu Sep 30 06:57:12 2010 Log: Fix dynatablerf validation problem cause by overloaded method. http://code.google.com/p/google-web-toolkit/source/detail?r=8900 Modified: /trunk/samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/domain

Re: Validation problem

2009-05-27 Thread hezjing
Hi poonam Instead of writing your own validation class, would you consider one of the GWT validation libraries? e.g. https://sourceforge.net/projects/gwt-vl/ I'm a newbie, and I'm still looking for a GWT validation library ... is there anyone able to share their experience in GWT validation? On

Re: Validation problem

2009-05-27 Thread Ian Bambury
Try if(!textBox.getText().matches([A-Za-z]+)) // fails validation, can't be blank if(!textBox.getText().matches([A-Za-z]*)) // fails validation, can be blank You can amend the regular expression to validate pretty much anything Ian http://examples.roughian.com 2009/5/27 hezjing

Validation problem

2009-05-20 Thread poonam
Can anyone help me in writing a simple gwt class for validating the input. My requirement is that, I need to check that the input in the textbox is alphabetic, and if the input is anything other than alphabet it displays the error message. Thanks