Custom Bean validation

2017-01-03 Thread 129pierre
Hi, I am looking at validation in http://www.gwtproject.org/doc/latest/DevGuideValidation.html but I didnot see anything for custom validation. Let's say my Person class has 2 fields : private Date birthDate; private Date graduationDate; How to add a validation inforcing that graduationDate i

Where do I find old distributions?

2017-01-03 Thread Rémon Sinnema
The website still points to googlecode.com, but that is no longer available. For instance, http://google-web-toolkit.googlecode.com/files/gwt-linux-1.7.1.tar.bz2 gives a 404. -- You received this message because you are subscribed to the Google Groups

Eclipse Plugin GWT Development Mode (CodeServer) does not work

2017-01-03 Thread DavidN
I have a maven project which uses GWT 2.8, JsInterop and Elemental 2. When I launch the CodeServer from Eclipse the event listeners are not triggered. When I launch the codeserver from maven (I'm using tbroyer's plugin) it works fine. What could be causing this ? It's like my EventListeners are

Re: Custom Bean validation

2017-01-03 Thread Thomas Broyer
On Tuesday, January 3, 2017 at 10:37:50 AM UTC+1, 129pierre wrote: > > Hi, > > I am looking at validation in > http://www.gwtproject.org/doc/latest/DevGuideValidation.html but I didnot > see anything for custom validation. > Because there's nothing specific to GWT about it. > Let's say my

Re: Where do I find old distributions?

2017-01-03 Thread Jens
There is a pending pull request that updates these links. You can see the updated locations in https://github.com/gwtproject/gwt-site/pull/205/files -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Re: Where do I find old distributions?

2017-01-03 Thread Thomas Broyer
On Tuesday, January 3, 2017 at 10:41:35 AM UTC+1, Rémon Sinnema wrote: > > The website still points to > googlecode.com, but that is no longer available. For instance, > http://google-web-toolkit.googlecode.com/files/gwt-linux-1.7.1.tar.bz2 gives > a 4

Re: Custom Bean validation

2017-01-03 Thread Jens
> But beware, Bean Validation support is deprecated! > http://www.gwtproject.org/release-notes.html#Release_Notes_2_8_0_RC1 > https://github.com/ManfredTremmel/gwt-bean-validators as a successor -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" g

Re: Eclipse Plugin GWT Development Mode (CodeServer) does not work

2017-01-03 Thread Jens
No idea, but maybe some elemental 2 code isn't correct yet and you need to pass -generateJsInteropExports as SDM parameter? -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, se

Re: Eclipse Plugin GWT Development Mode (CodeServer) does not work

2017-01-03 Thread David
I have included that parameter when launching SDM it makes no difference. On Tue, Jan 3, 2017 at 12:34 PM, Jens wrote: > No idea, but maybe some elemental 2 code isn't correct yet and you need to > pass -generateJsInteropExports as SDM parameter? > > -- J. > > -- > You received this message beca

Re: Eclipse Plugin GWT Development Mode (CodeServer) does not work

2017-01-03 Thread David
I was too quick to respond. After switching the logLevel to trace it now started working. I guess that changing the logLevel does a full recompile instead of an incremental one, so I was in effect still using the generated JS without the JsInteropExports. On Tue, Jan 3, 2017 at 12:34 PM, Jens

Re: Eclipse Plugin GWT Development Mode (CodeServer) does not work

2017-01-03 Thread Jens
> I was too quick to respond. > > After switching the logLevel to trace it now started working. > > I guess that changing the logLevel does a full recompile instead of an > incremental one, > so I was in effect still using the generated JS without the > JsInteropExports. > Hmm interesting. ge

Re: GWT CELLTABLE How to restore old value in cell if validation fails

2017-01-03 Thread Ved Ratna Mehra
Its way too late but still and I think you must have already done this... Below would redraw only a single row. dataGrid.redrawRow( rowIndexReceivedInUpdateMethod ); On Tuesday, August 9, 2011 at 12:53:48 PM UTC+5:30, vaibhav gwt wrote: > > Hi Loan, > > Thanks for your solution. It works but