Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Alain Ekambi
started to upload the code on github. You can have a look here https://github.com/eemi2010/anim4j. I used it in combination with Ext4j to create some nice result that I will hopefully share soon. 2013/10/10 Ed Bras post2edb...@gmail.com I am curious how you setup/design your code. Let me

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Ed Bras
thanks for sharing, I will have a look. BTW: specifying an array of elements as input for a tween/timeline method, doesn't work in the current release of GSAP. You need the latest RC for that. It was a bug I discovered a few weeks ago when implementing the gwt wrapper.. It's because of the

Re: RequestFactory - get a Request for a ProxyClass

2013-10-14 Thread Thomas Broyer
On Sunday, October 13, 2013 4:08:07 PM UTC+2, Manuel wrote: Hi everyone, I just started to work with the requestFactory. Im trying to create a Request for a Proxy. I made a baseRequest for CRUD functionality that look like this: // not finished yet @SkipInterfaceValidation

Scrolling on mobile device and desktop?

2013-10-14 Thread Ed
What is the correct way to realize a Scrollable div on any device, like a mobile device and desktop? For webkit I noticed webkit-overflow-scrolling, but what about the other devices like a desktop? And when (still) to use the GWT ScrollPanel that has some partial supported touch scrolling

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Alain Ekambi
I was aware of that bug. My woraround was to use $wnd.Array. I will then wait for the next release and remove the work around Cheers 2013/10/14 Ed Bras post2edb...@gmail.com thanks for sharing, I will have a look. BTW: specifying an array of elements as input for a tween/timeline method,

Re: Appearance of extra scroll bar in GWT Datagrid

2013-10-14 Thread harshyadav
No success so far. Yes, only happens in Google Chrome. --Harsh On Thursday, October 10, 2013 4:15:08 AM UTC-4, ovidi...@gebs.ro wrote: Hello, Any news on this issue? Or anybody found any workarounds? Thank you, O -- You received this message because you are subscribed to the Google

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Blaze
Out of a curiosity :) For what you actually use the lib ? I used it for some small animations, but went the native way without creating a wrapper... The lib is amazing anyway... Cheers On Monday, October 14, 2013 11:08:01 AM UTC+2, Alain wrote: I was aware of that bug. My woraround was to

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Alain Ekambi
It something that required a seamless integration with GWT and Ext JS. I m finilizing stuff around here and should share a dome app soon :) Yeah GSAP is simply awesome. :) 2013/10/14 Blaze baze...@gmail.com Out of a curiosity :) For what you actually use the lib ? I used it for some small

Re: GWT and GSAP (Green Sock Animation Platform) ?

2013-10-14 Thread Ed Bras
Out of a curiosity :) For what you actually use the lib ? Just all kind of (simple) animations (currently) that work on any device (responsive web site): fade/slides/move/color change, the basics (till now). I used it for some small animations, but went the native way without creating a

[UML] [reverse engineering] [plugin Eclipse]

2013-10-14 Thread Axel R
Hi, I would like to generate the UML (*class diagram*) of my GWT / GAE project. But I need some *reverse engineering*... Is there a 'free' *eclipse *plugin (or any other 'free' tool) that you r using in order to generate (reverse engineering) the UML ? I have searched, but there is many

gwt-user Jar not loaded offending class javax.servlet.Servlet

2013-10-14 Thread Lavnish Lalchandani
I have a war file (GWT app) which - works fine in UAT Env 1 - works fine in Production environment - gives below error when deploying in UAT Env 2 - the jar files ... servlet-api.jar , gwt-user.jar is located in same folder in all the environment - as per

Determining dependencies for split points

2013-10-14 Thread Benjamin Klein
In my GWT application, I have several split points. In the compile report, it says that a certain class has some code loaded in split point 1 and some code loaded in split point 5. How do I find out what is causing the code to load from split point 5? -- You received this message because you are

Re: Determining dependencies for split points

2013-10-14 Thread Jens
You have only used that specific code in split point 5 and never in split point 1. Thats why the code ends up in split point 5. If you would use the same code in both split points it would end up in the left over fragment because its not unique anymore to a single split point. The compile

Re: Editor Framework and BeanValidation (setConstraintViolations problem).

2013-10-14 Thread Alexandre Harvey-Tremblay
I am using the same code as you, however my errors are not displayed on the ValueBoxEditorDecorator object. Do you have issues with your errors showing? On Tuesday, August 28, 2012 11:11:20 AM UTC-4, Ümit Seren wrote: I am trying to get the Editor Framework to work with BeanValidation

Re: Determining dependencies for split points

2013-10-14 Thread Ben Klein
Actually, these are initial fragments, loading in the order 5,1,2,3,4. There are no exclusive fragments in this application. On Monday, October 14, 2013 1:37:46 PM UTC-4, Jens wrote: You have only used that specific code in split point 5 and never in split point 1. Thats why the code ends up

[gwt-contrib] Re: gwtproject.org javadoc missing files

2013-10-14 Thread Thomas Broyer
It looks like a shortcoming of the gwt-site-uploader. https://gwt.googlesource.com/gwt-site-uploader/+/master/src/main/java/com/google/gwt/site/uploader/FileTraverserFileSystemImpl.java the shouldFileBeUploaded method would have to whitelist package-list (the there could be other issues, e.g.

Re: [gwt-contrib] CSS3 support in CssResource: Closure Stylesheets?

2013-10-14 Thread Julien Dramaix
I put online the first draft of the GssResource and its generator : https://github.com/jDramaix/gss.gwt/pull/1 Don't hesitate to review it, comment and give feedback. Once we'll agree that is the way to go, we can move the code in a project under gwtproject account. This is a WIP and all is

[gwt-contrib] Re: Implement subpixels to support IE10

2013-10-14 Thread Matti Tahvonen
Hi, IMHO the right way to fix the sub pixel issues would be to just start using double as return value. For average GWT users this causes little or no changes at all, for widget developers compilation errors are easy to fix. Also the breaking change highlights potential sub pixel related

[gwt-contrib] GWT contribution workshop

2013-10-14 Thread Michael Vogt
Hello. You may have seen that there will be a workshop during GWT.create to help developers interested in contributing to get the dev environment set up correctly. I have seen some posts recently here, that setting up the dev environment is too time consuming. Is there any work ongoing right

Re: [gwt-contrib] Re: Implement subpixels to support IE10

2013-10-14 Thread Goktug Gokdogan
Perhaps we can just avoid the trouble and introduce sub-pixel APIs only with the new Elemental(*) - not from old APIs (including 3.0 release). In the mean-time we can improve the internals of current widgets to better utilize subpixel values like the Daniel's patch. * I'm planning to write a doc