Re: Third Party Library for GWT validation

2015-05-20 Thread Chad Vincent
Huh. It's been a few years since I was in the raw serialization bits. I must've got things confused. Actually, that serialization format looks like what I remember seeing of HL7. On Wed, May 20, 2015 at 10:05 AM Thomas Broyer wrote: > > > On Wednesday, May 20, 2015 at 4:40:17 PM UTC+2, Chad V

Re: Third Party Library for GWT validation

2015-05-20 Thread Thomas Broyer
On Wednesday, May 20, 2015 at 4:40:17 PM UTC+2, Chad Vincent wrote: > > (GWT responses use GSON, a Google-modified JSON, and are converted to POJO > post-receive.) > Huh!?!?!?! GWT-RPC uses its own serialization formats (plural: server-to-client is based on JS object literals –there's a patch

Re: Third Party Library for GWT validation

2015-05-20 Thread Chad Vincent
, Mohammed Sameen wrote: > > Yes Chad,I can't use GWT Validation(my application response is in the JSON > format not in POJO).. > > On Monday, May 18, 2015 at 5:36:11 PM UTC+5:30, abdul wrote: >> >> I want to validate the gwt field like (Email,Text Length,Phone >>

Re: Third Party Library for GWT validation

2015-05-19 Thread Freddy Boucher
The way you request your server *doesn't matter*... The *GWT Validation Framework* allows you to test your fields in both *front-end* and *back-end*. As soon as you test your fields, you will get an *error list.* On Tuesday, May 19, 2015 at 4:07:15 PM UTC+10, Mohammed Sameen wrote: &g

Re: Third Party Library for GWT validation

2015-05-18 Thread Mohammed Sameen
Yes Chad,I can't use GWT Validation(my application response is in the JSON format not in POJO).. On Monday, May 18, 2015 at 5:36:11 PM UTC+5:30, abdul wrote: > > I want to validate the gwt field like (Email,Text Length,Phone Number,Date > & SSN,etc..) Is there any proven JS or

Re: Third Party Library for GWT validation

2015-05-18 Thread Chad Vincent
Are you not marshalling the response into a POJO? GWT Validation can be done (with most validators, though not all) client-side. On Monday, May 18, 2015 at 7:06:11 AM UTC-5, abdul wrote: > > I want to validate the gwt field like (Email,Text Length,Phone Number,Date > & SSN,etc..)

Third Party Library for GWT validation

2015-05-18 Thread abdul
I want to validate the gwt field like (Email,Text Length,Phone Number,Date & SSN,etc..) Is there any proven JS or Library Available for Validating this fields with GWT. - I Can't use GWT Validation FrameworkorGWT Errai for my application since i am getting response as JSO

Gwt validation

2013-03-20 Thread ravi kumar
Hi All, im trying to execute validation sample which is in gwt sdk itself...When i start the jetty server using maven like mvn jetty:run the server is displaying only welcom file.. Actual output it should ask username and validate nameIs anyone knows the answer please help me... -- You

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread silvio.troia
this is my new post https://groups.google.com/forum/?fromgroups#!topic/gwt-validation/YQ-fxHTDofQ Il giorno giovedì 12 luglio 2012 17:17:49 UTC+2, silvio.troia ha scritto: > > ok tnx > > Il giorno giovedì 12 luglio 2012 17:06:50 UTC+2, Jens ha scritto: >> >> Maybe

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread silvio.troia
ok tnx Il giorno giovedì 12 luglio 2012 17:06:50 UTC+2, Jens ha scritto: > > Maybe you should ask again at > https://groups.google.com/forum/?fromgroups#!forum/gwt-validation > > -- J. > -- You received this message because you are subscribed to the Google Groups "Go

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread Jens
Maybe you should ask again at https://groups.google.com/forum/?fromgroups#!forum/gwt-validation -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread silvio.troia
it doesn't work when copy a gwt-validation library into a folder on my project it's very strange -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/ms

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread silvio.troia
i don't have a stacktrace. all calls to db doesn't work in debug mode i see only java.lang.reflect.InvocationTargetException with target NullPonterExceptions in AopUtils.Class Il giorno giovedì 12 luglio 2012 13:05:20 UTC+2, silvio.troia ha scritto: > > hi, > i'm new in

Re: adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread Juan Pablo Gardella
Can you share the stacktrace? 2012/7/12 silvio.troia > hi, > i'm new in GWT, > i've added a gwt-validation library, > error appears when hibernate have to do merge > /* > > * (non-Javadoc) > > * @see org.skyway.spring.util.dao.JpaDao#store(java.la

adding gwt-validation-2.1.jar library, hibernate doesn't works. NullPointerException

2012-07-12 Thread silvio.troia
hi, i'm new in GWT, i've added a gwt-validation library, error appears when hibernate have to do merge /* * (non-Javadoc) * @see org.skyway.spring.util.dao.JpaDao#store(java.lang.Object) */ @Transactional public T store(T toStore) { if (canBeMerged(toStore)) { return mer

Is GWT Validation is available for RequestFactory proxy

2012-05-11 Thread saurabh saurabh
Hi all, I am working on a project with GWT using RequestFactory and EditorsFramework along with spring hibernate on server side. I saw GWT validation feature that ties up nicely with editors but every example I have seen so far have domain 'Entities' on shared path. While I am hav

Re: Server side gwt-validation doesn't work (?)

2011-12-07 Thread chris.ruffalo
The Reflections library that gwt-validation uses to mine the classpath for information does not seem to work at all in a containerized environment. See: http://code.google.com/p/gwt-validation/issues/detail?id=52 for more information. On Dec 7, 10:50 am, "Nicolas.Rocca" wrote:

Re: Server side gwt-validation doesn't work (?)

2011-12-07 Thread Nicolas.Rocca
replace the gwt-validation-2.0-BETA-SNAPSHOT-r269.jar with hibernate-validator-4.2.0.Final.jar in the final .war with the following maven config: com.em gwt-validation

Re: Server side gwt-validation doesn't work (?)

2011-12-07 Thread Nicolas.Rocca
Thanks for your pom snippet. But my problem is not the hibernate validator. I use this just as a workaround. The problem is that in my opinion it shouldn't be necessary to use hibernate-validator at all! I use it just as a replacement for gwt-validation-2.0-BETA-SNAPSHOT- r269.jar which do

Re: Server side gwt-validation doesn't work (?)

2011-12-07 Thread Ashwin Desikan
wrote: Hi Nick, unfortunately, this doesn't work. With both jars, I get the same error. I also wonder why the dependencies-list (http://code.google.com/p/gwt- validation/wiki/Dependencies) of gwt-validation doesn't mention any validation framework like hibernate if it is really necessar

Re: Server side gwt-validation doesn't work (?)

2011-12-07 Thread Nicolas.Rocca
Hi Nick, unfortunately, this doesn't work. With both jars, I get the same error. I also wonder why the dependencies-list (http://code.google.com/p/gwt- validation/wiki/Dependencies) of gwt-validation doesn't mention any validation framework like hibernate if it is really necessary. D

Re: Server side gwt-validation doesn't work (?)

2011-12-06 Thread Nick Chalko
On Tue, Dec 6, 2011 at 7:46 AM, Nicolas.Rocca wrote: > We use gwt-validation-2.0-BETA-SNAPSHOT-r269.jar and GWT 2.4. > The field of the entity is annotated with > javax.validation.constraints.NotNull > Client side validation works and also server side validation in hosted > mode (

Server side gwt-validation doesn't work (?)

2011-12-06 Thread Nicolas.Rocca
We use gwt-validation-2.0-BETA-SNAPSHOT-r269.jar and GWT 2.4. The field of the entity is annotated with javax.validation.constraints.NotNull Client side validation works and also server side validation in hosted mode (jetty). But when deployed in tomcat (6.0.20), we get the following exception

Re: GWT Validation framework

2011-08-09 Thread Juan Pablo Gardella
In editor I don't know, but with MVP yes. You can define in presenter objets the validators. 2011/8/9 nacho > Any of those validation options can be easily used with MVP & Editor fw? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group.

Re: GWT Validation framework

2011-08-09 Thread nacho
Any of those validation options can be easily used with MVP & Editor fw? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Tnuj01pYZZsJ. To post t

Re: GWT Validation framework

2011-08-08 Thread Piro
Just google gwt validation! I recommend gwt-vl too. It is not perfect but it works. I use it since i did not get built in validation to work (http:// code.google.com/p/gwt-validation/). On 8. Aug, 09:13 h., RVSN wrote: > Thanks Juan. > > That seems to be custom validation framework. Ca

Re: GWT Validation framework

2011-08-08 Thread objectuser
GWT it working toward using the JSR 303 approach for validation. Currently, I think it's not quite straight forward to get it to work in GWT 2.3. I think it'll be integrated better in 2.4, which is currently in RC1. -- You received this message because you are subscribed to the Google Groups

Re: GWT Validation framework

2011-08-08 Thread RVSN
;m a naive to Gwt. I'm trying to implementing GWT validation > > framework. but i couldnt make this. > > Could anyone pls help me to implementing GWT validation framework in > > my web application. For this I need some samples. pls help me out this > > > -- > >

Re: GWT Validation framework

2011-08-05 Thread Juan Pablo Gardella
I recommend gwt-vl <http://gwt-vl.sourceforge.net/> 2011/8/5 RVSN > I'm a naive to Gwt. I'm trying to implementing GWT validation > framework. but i couldnt make this. > Could anyone pls help me to implementing GWT validation framework in > my web application. For t

GWT Validation framework

2011-08-05 Thread RVSN
I'm a naive to Gwt. I'm trying to implementing GWT validation framework. but i couldnt make this. Could anyone pls help me to implementing GWT validation framework in my web application. For this I need some samples. pls help me out this -- You received this message because you are sub

Re: GWT-Validation with GWT 2.2.0

2011-02-23 Thread klemensr
with the code from http://gwt-validation.googlecode.com/svn/branches/jrs303_dev/ I have heard that the validator is going to be included in the GWT core libraries, but this doesn't really help me at the moment... :) On 23 Feb., 14:11, Christian Goudreau wrote: > Gwt-validation is inco

Re: GWT-Validation with GWT 2.2.0

2011-02-23 Thread Christian Goudreau
ng to be included in the GWT > core libraries, but this doesn't really help me at the moment... :) > > > On 23 Feb., 14:11, Christian Goudreau > wrote: > > Gwt-validation is incompatible with Gwt 2.2, you have to checkout the > code > > and compile it against Gwt 2.2.

Re: GWT-Validation with GWT 2.2.0

2011-02-23 Thread Christian Goudreau
Gwt-validation is incompatible with Gwt 2.2, you have to checkout the code and compile it against Gwt 2.2. Cheers, On Wed, Feb 23, 2011 at 7:30 AM, klemensr wrote: > Thanks for the response. > I have created an own test project so that should not be the > problem... > > Any ot

Re: GWT-Validation with GWT 2.2.0

2011-02-23 Thread klemensr
Thanks for the response. I have created an own test project so that should not be the problem... Any other suggestions? On 23 Feb., 12:38, tdk wrote: > maybe rebuilding your project from scratch (clean build) helps. > I had a similar issue which went away after doing a clean build. -- You rec

Re: GWT-Validation with GWT 2.2.0

2011-02-23 Thread tdk
maybe rebuilding your project from scratch (clean build) helps. I had a similar issue which went away after doing a clean build. -- 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@google

GWT-Validation with GWT 2.2.0

2011-02-23 Thread klemensr
Dear all, I just updated from GWT 2.0 to GWT 2.2.0 and I have issues with GWT- Validation (http://code.google.com/p/gwt-validation/). Is there maybe a new way of doing validation in GWT 2.2.0? I have found nothing in different forums about GWT-Validation and GWT 2.2.0. Here is my failure

Re: GWT Validation Framework

2011-01-22 Thread João Pereira
provide me an example of gwt-validation >> > > Take a look at > http://code.google.com/p/google-web-toolkit/wiki/BeanValidation > and > http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/validation/src/com/google/gwt/sample/validation/ > > -- > You r

Re: GWT Validation Framework

2011-01-22 Thread Nick Chalko
On Fri, Jan 21, 2011 at 11:06 PM, ghosh...@yahoo.in wrote: > Can anyone please provide me an example of gwt-validation > > Take a look at http://code.google.com/p/google-web-toolkit/wiki/BeanValidation and http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/validatio

Re: GWT Validation Framework

2011-01-17 Thread Nick Chalko
On Mon, Jan 17, 2011 at 12:02 PM, SVR wrote: > This is not part of any released code? Is it planned to be part of ver x.y? > Eventually it will be in released code. No time line yet. > Is http://code.google.com/p/gwt-validation/ a different project? > yes it is a different project

Re: GWT Validation Framework

2011-01-17 Thread SVR
This is not part of any released code? Is it planned to be part of ver x.y? Is http://code.google.com/p/gwt-validation/ a different project? thanks On Mon, Jan 17, 2011 at 2:47 PM, Nick Chalko wrote: > > > On Mon, Jan 17, 2011 at 7:43 AM, SVR wrote: > >> Has anybody used t

Re: GWT Validation Framework

2011-01-17 Thread Nick Chalko
On Mon, Jan 17, 2011 at 7:43 AM, SVR wrote: > Has anybody used the GWT Validation Framework based on the > JSR-303<http://code.google.com/p/gwt-validation/> > > Can you please provide your thoughts on its usefulness and can you please > point to some useful links on it

Re: GWT Validation Framework

2011-01-17 Thread SVR
I dont see it using the gwt validation framework. do u mean a later version / beta? On Mon, Jan 17, 2011 at 1:57 PM, Miroslav Genov wrote: > You can take a look into DynatableRf example that comes with the SDK. > > -- > You received this message because you are subscribed to the G

Re: GWT Validation Framework

2011-01-17 Thread Miroslav Genov
You can take a look into DynatableRf example that comes with the SDK. -- 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

GWT Validation Framework

2011-01-17 Thread SVR
Has anybody used the GWT Validation Framework based on the JSR-303<http://code.google.com/p/gwt-validation/> Can you please provide your thoughts on its usefulness and can you please point to some useful links on its usage with examples. thanks -- You received this message because y

UI Binder and gwt-validation

2010-04-27 Thread John Ivens
Does anyone have these two (UI Binder and gwt-validation) working together? Whenever I make a class that has an equivalent ui.xml file (and which extends Composite, but this may not matter) implement IValidatable, I get an error saying that GWT.create() can only be run on the client side. All of

Re: GWT Validation Best Practice

2010-01-13 Thread simonob007
n components so I would have to build validation components > > manually. > > > From my investigations (including searching this group) I have not > > been able to come to any conclusions on best practice for validation > > with GWT, I have seen there are a number of separate

Re: GWT Validation Best Practice

2010-01-12 Thread Deanna Bonds
with GWT, I have seen there are a number of separate GWT  validation > projects available however I have not been able to come to a > conclusion on a best practice. > > Please could you share your personally experiences around GWT > validation and share any best practices? > &

GWT Validation Best Practice

2010-01-12 Thread simonob007
, I have seen there are a number of separate GWT validation projects available however I have not been able to come to a conclusion on a best practice. Please could you share your personally experiences around GWT validation and share any best practices? NOTE: I know that there are also a coupl

Re: gwt-validation is this project being maintained?

2009-10-18 Thread David
o I can not really > tell much. > > On Oct 17, 4:58 pm, myapplicationquestions > wrote: > > > > > Hi All, > > > I have a requirement where i need to do input validation for a lot of > > form fields through out the application, i was thinking of using > >

Re: gwt-validation is this project being maintained?

2009-10-17 Thread Ben
of > form fields through out the application, i was thinking of using > > http://code.google.com/p/gwt-validation/ > > as it seems to be the best of what we have avaliable, is this a good > library? i did not see a future road map for this? I want to be sure > that this will be upgr

gwt-validation is this project being maintained?

2009-10-17 Thread myapplicationquestions
Hi All, I have a requirement where i need to do input validation for a lot of form fields through out the application, i was thinking of using http://code.google.com/p/gwt-validation/ as it seems to be the best of what we have avaliable, is this a good library? i did not see a future road map

Re: Has anyone used gwt-validation api? or is there a better one?

2009-08-30 Thread Sri
51 pm, myapplicationquestions wrote: > Has anyone used gwt-validation api? or is there a better one? I need > mostly data type validations, and some basic constraints on UI side.. > Let me know what you all think > > http://code.google.com/p/gwt-validation/ --~--~-~--~~~

Has anyone used gwt-validation api? or is there a better one?

2009-08-29 Thread myapplicationquestions
Has anyone used gwt-validation api? or is there a better one? I need mostly data type validations, and some basic constraints on UI side.. Let me know what you all think http://code.google.com/p/gwt-validation/ --~--~-~--~~~---~--~~ You received this message

Google Eclipse plugin + gin + gwt validation

2009-08-18 Thread Gary S
I'm creating a project for the plugin + guice gin + gwt validation. It looks easy enough to do myself, but I want to check if there's a standard way of doing this. I'd think lots of Google plugin projects would also use gin and perhaps

Re: GWT Validation Library

2009-05-15 Thread amayen
ot this : > [ERROR] Unable to find 'eu/maydu/gwt/validation/ > ValidationLibrary .gwt.xml' on your classpath; could be a typo, or > maybe you forgot to include a classpath entry for source? > > i included the jar already.. does any

Re: GWT Validation Library

2009-05-15 Thread amayen
d that issue only by 'accident'). (See http://sourceforge.net/forum/forum.php?forum_id=932715) Kind regards, Anatol Mayen On 15 Mai, 15:38, 0710 wrote: > thank you for your reply but it doesn't seems correct. > > i got this : > [ERROR] Unable to find 'eu/maydu/g

Re: GWT Validation Library

2009-05-15 Thread 0710
thank you for your reply but it doesn't seems correct. i got this : [ERROR] Unable to find 'eu/maydu/gwt/validation/ ValidationLibrary .gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source? i included the jar already.. does

Re: GWT Validation Library

2009-05-13 Thread Salvador Diaz
eu.maydu.gwt.validation.ValidationLibrary On 13 mai, 16:53, ytbryan wrote: > hi all, > > I refer to this gwt validation library.http://gwt-vl.maydu.eu/ > ValidationShowcase.html > does anybody know what is the name of the inherited module

GWT Validation Library

2009-05-13 Thread ytbryan
hi all, I refer to this gwt validation library.http://gwt-vl.maydu.eu/ ValidationShowcase.html does anybody know what is the name of the inherited module? thank yoU! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

GWT Validation

2009-04-07 Thread poonam
Hello, Actually I have developed a simple GWT validation program , where I have set the "gwt-validation-1[1].0.jar " path into the classpath; but I am getting the warnings as follows : [WARN] Unknown type 'com.google.gwt.validation.client.interfaces.IValidatable' s

Re: GWT-Validation

2008-11-25 Thread Sumit Chandel
Salut kasp, Je ne suis pas trop familier avec le project gwt-validation, mais il me semble qu'il devrait fonctionner pour les objects qui sont transmis via RPC. En fait, il semble que le project est conçu pour la validations des objects du coté client ainsi que du coté serveur. Est-ce q

GWT-Validation

2008-11-21 Thread kasp
je veux avoir un exemple d'utilisation du framewok gwt-validation avec les services RPC.y'a t'il quelqu'un qu'a jeter un coup d'oeil la dessus? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog