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 JSON not DTO. -

Re: GWT2.8 JsInterop Java-JS

2015-05-18 Thread Colin Alworth
The '_1_g$' indicates you are in super dev mode - does it work correctly when fully compiled to JS (draft or no)? I saw a problem in this area a few weeks ago. Also, can you post the full definition for MyObject? I agree with Alberto though, your printObj doesn't make any sense as is - it is

Re: Have GWT 2.7.0 SuperDevMode reuse old compile-n files from last run

2015-05-18 Thread Brandon Donnelson
Eclipse uses the entrypoint, so this wouldn't have anything to do with Eclipse. On Sunday, May 17, 2015 at 5:01:33 AM UTC-7, salek@googlemail.com wrote: Hello, I'm using GWT 2.7.0 SuperDevMode and start the codeserver from Eclipse Luna SR2 under Win 8.1, but as plain Java application

Re: GWT 2.7 with Designer

2015-05-18 Thread Brandon Donnelson
What did you have to do to workaround the issue? On Wednesday, May 13, 2015 at 12:52:15 PM UTC-7, atx@gmail.com wrote: https://github.com/bently0602/GWT-2.7 Here's some patches to support using the eclipse designer with GWT 2.7. It is very hackish so it may not work in every use case

Re: Trying SDM in gwt 2.5.1 - no option to compile

2015-05-18 Thread Brandon Donnelson
There are so many issues with SDM in 2.5.x that I recommend upgrading to GWT 2.7. It's so much faster, source maps work better and such. Although I suspect you've heard that but have some app upgrade constraints. On Friday, May 15, 2015 at 4:21:46 PM UTC-7, MG12 wrote: I needed to add:

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..) Is there any

Re: Have GWT 2.7.0 SuperDevMode reuse old compile-n files from last run

2015-05-18 Thread Jens
Not sure if it did make into GWT 2.7 but at least 2.8-SNAPSHOT uses some caches when you restart SDM. It still takes a bit but its a lot faster than with previous versions of SDM. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Cannot sign in to Google through eclipse with new GPE

2015-05-18 Thread Lee ViDemantay
I get an error while trying to login with the new GPE https://www.google.com/ *401.* That’s an error. *Error: invalid_client* The OAuth client was not found. Request Details - scope=https://www.googleapis.com/auth/appengine.admin https://www.googleapis.com/auth/drive

Canvas and a handler on each element

2015-05-18 Thread Brotinger
Hi, since a few weeks I work with GWT and need some help with canvas now. My goal is to have something like this here: http://alpha2.colorboxthing.appspot.com/#/ So in the first phase I need a some rectangles and when I click on it a new page is displayed. Question: How can I draw a rectangles

Re: GWT2.8 JsInterop Java-JS

2015-05-18 Thread Alex W
The '_1_g$' indicates you are in super dev mode - does it work correctly when fully compiled to JS (draft or no)? I saw a problem in this area a few weeks ago. No it doesn't work when it's fully compiled to JS either. Also, can you post the full definition for MyObject? class

Re: GWT 2.7 with Designer

2015-05-18 Thread atx . hx . ag
Merged a commit from 2.6.1, created a few methods overloads, and implemented an interface on a class the designer uses. It was really not too much. For the full details see the top of the README in the repo linked. -- You received this message because you are subscribed to the Google Groups

Re: Canvas and a handler on each element

2015-05-18 Thread Jens
You paint into a canvas using its Context2D object (canvas.getContext2d()). It has a bunch of methods for still styles and shapes. Since canvas is just something you paint on you can not attach a handler for each painted rectangle, a painted rectangle is just pixels. You need to attach a

DataBinding library for Java and GWT

2015-05-18 Thread Ltearno
Hi all, I would like to introduce a new project i just released. It is a non-intrusive library doing data binding for Java and GWT (it might probably also work with Android and J2Objc but i did not test it in those environments yet). It uses deferred binding to declare classes which need

Re: @GWTCompatible

2015-05-18 Thread Mat Jaggard
Do I assume that nothing came from this? We currently have to pre-parse all our source to handle what is and isn't compatible because our base project it too big to add @GwtIncompatible to everything. On Monday, 22 June 2009 23:44:24 UTC+1, Tom Sorgie wrote: Hey guys, Ever since I first