Source maps

2012-04-01 Thread Honza Rames
Hi everyone, I tried to compile my GWT app with source maps support (as explained here http://stackoverflow.com/questions/9804492/how-to-try-sourcemaps-with-gwt) and it failed at first (some json stuff was missing) so I added it to my project's class path then it compiled OK and I can see the

Re: Source maps

2012-04-01 Thread Andrea Boscolo
Are you sure the whole machinery is already available in the public (trunk) repo? I thought it's not. https://plus.google.com/u/1/110412141990454266397/posts/Nvr6Se6eAPh On Sunday, April 1, 2012 12:16:05 PM UTC+2, Honza Rames wrote: Hi everyone, I tried to compile my GWT app with source maps

Re: call google places service error:invalid label:“html_attributions”

2012-04-01 Thread Jens
The docs (https://developers.google.com/maps/documentation/places/) say nothing about that they support JSONP requests. Instead just below the table of contents they say: Looking to use this service in a JavaScript application? Check out the Places Library

Re: Source maps

2012-04-01 Thread Gal Dolber
got exited for a minute... its not there yet, I'm checking out trunk everyday hoping to see SuperDraftMode and SourceMap commited On Sun, Apr 1, 2012 at 7:20 AM, Andrea Boscolo andrew...@gmail.com wrote: Are you sure the whole machinery is already available in the public (trunk) repo? I

Re: Source maps

2012-04-01 Thread Gal Dolber
oh, my mistake, it seems SourceMap is there.. are you using trunk? On Sun, Apr 1, 2012 at 12:31 PM, Gal Dolber gal.dol...@gmail.com wrote: got exited for a minute... its not there yet, I'm checking out trunk everyday hoping to see SuperDraftMode and SourceMap commited On Sun, Apr 1, 2012 at

Re: JSNI error when using GWT canvas

2012-04-01 Thread Colin Alworth
You are running into a Chome/Dev mode bug that has apparently been around since about Chrome 10. It seems to be intermittent, only happens when stepping in and out of JSNI methods, and will not affect you application once it is compiled. More information, discussion:

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-01 Thread GWTter
Hi Deepak, You would have to post your code. Did you make sure to style your vertical scrollbar, create the MyScrollPanel and set its verticalScrollbar with the one you created? In the code I sent you the vertical scrollbar has a width of 10px, you should style the vertical scrollbar to be

BFCache support, aka page cache or fast history navigation

2012-04-01 Thread Michael Allan
I have an experimental branch of GWT 2.4 to share. This may be of interest to developers of embedded apps who expect a lot of navigation between pages. It offers BFCache support for faster back-and-forth navigation in browsers such as Firefox, Opera and Chrome.

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-01 Thread Deepak Singh
Hi Seth, I am posting my code here: myScrollPanel.css @CHARSET ISO-8859-1; .customScrollPanel{ } .customScrollPanelCorner{ opacity: 0.0; } MyScrollPanel.java public class MyScrollPanel extends CustomScrollPanel { /** * Extends the CustomScrollPanel Resources interface so that we can add

Re: Entity Locator and Spring

2012-04-01 Thread 叶雨飞
I found a solution myself, by extending RequestFactoryServelt and passing a ServiceLayerDecorator. Note that it's possible to implement functionality of ServiceLocator as a decorator here too. Hope it will help someone else. public class SpringRequestFactoryServelet extends