Re: images not showing in any browser

2014-04-17 Thread Davide Micheletti
when you run MyProject look at the HTML code and see the url of the image.. So you can see where is the problem in the path.. However i've a project with images and i put the image in war/Images/1.jpg and in the code i've ... ... Image img = new Image(); img.setUrl(Images/1.jpg); Panel p =

Re: Development Mode will not be supported in Firefox 27+

2014-04-17 Thread Mario Jauvin
People, this has been going on since beginning of February with no action on the part of Mozilla. I have create a new mozilla bug https://bugzilla.mozilla.org/show_bug.cgi?id=996947 which is about the fact that GWT developper does not work in Firefox any longer. I have proposed a workaround

Re: the mvp architecture in a gwt application

2014-04-17 Thread imen boukhris
Thank you Ronan Le mercredi 16 avril 2014 12:14:06 UTC+2, Ronan Quillevere a écrit : I meant Mohamed is right sorry cannot edit On Wednesday, April 16, 2014 12:13:19 PM UTC+2, Ronan Quillevere wrote: Amir is right, you can code using MVP without using the eventbus even if it is probably

Re: Setup Eclipse workspace for core development

2014-04-17 Thread Thomas Broyer
First, you should probably subscribe and post to https://groups.google.com/d/forum/google-web-toolkit-contributors for questions related to developing GWT itself (as opposed to developing *with* GWT) Cc'ing that group, please follow-up there. On Wednesday, April 16, 2014 4:03:20 PM UTC+2,

Adding EventHandler between GWT and Browser?

2014-04-17 Thread Alex Ph
Hi all, I have some widgets with keyDown-Bindings (e.g. F11). These keyDown bindings only work when the widget got the focus. If the user leaves the focus F11 triggers the browser behaviour (fullscreen). Now I tried to deactivate the global keybindings by adding this code inside the

Re: Adding EventHandler between GWT and Browser?

2014-04-17 Thread Thomas Broyer
As its name suggests, PreviewNativeEvent *previews* the events, so it indeed runs before the event is dispatched to your code. You'll want to listen to events that bubble up to the uppermost level (without being stopped by other handlers in between, such as your widget). You can easily listen at

Re: Setup Eclipse workspace for core development

2014-04-17 Thread Stephan Beutel
Hello Thomas, thanks a lot for your answer. Using the requestfactory-apt.jar from GWT_ROOT/build/lib/ did fix the problem with the annotation postprocessing. Ignoring the GWT Plugin errors everything is right now. But now I want to run a unit test (SimplePagerTest) and get the following

Re: Setup Eclipse workspace for core development

2014-04-17 Thread Jens
Could not find the GWT compiler jarfile. Serialization errors might occur when accessing the persistent unit cache. Starting http://10.43.9.45:56704/com.google.gwt.user.cellview.CellView.JUnit/junit-standards.html?gwt.codesvr=10.43.9.45:56702on browser FF17 200 - GET

JS Error after compiling, runs great in dev mode

2014-04-17 Thread Mohit Garg
Hi, I have spent almost a couple of days trying to resolve this issue to no avail, so any help would be much appreciated. I am intercepting GWT calls using Spring MVC through a custom GwtRpcController class. The method of interest is as follows: @Override public String processCall(String

Re: JS Error after compiling, runs great in dev mode

2014-04-17 Thread Thomas Broyer
Is the AccessDeniedException declared in a throws clause in any RemoteService interface? IIRC you have to declare exceptions explicitly for them to be included in the serialization policies. I can't tell why it works in DevMode but not in prod mode though. On Thursday, April 17, 2014 1:32:47

Re: JS Error after compiling, runs great in dev mode

2014-04-17 Thread Mohit Garg
Thanks Thomas. That worked as you suggested! I was almost sure it was a compiler / dev library issue since it worked in dev mode. Just curious, what could be the reason that GWT would ignore serialization of the runtimeexception type from the source folders? Now, the custom

Re: Development Mode will not be supported in Firefox 27+

2014-04-17 Thread Brian Slesinsky
For the direction of an open source project, people who volunteer to do actual coding are more important than marketing efforts by people who only want to be users. The intersection of GWT developers and Firefox browser developers seems to be the empty set, so we have very limited influence. This

Re: DockLayoutPanel as root with fixed width

2014-04-17 Thread Magnus
Hi, I noticed that there are no scrollbars when the browser width gets resized below the fixed width of the DockLayoutPanel. Consider this minimal example: public void onModuleLoad() { DockLayoutPanel p = new DockLayoutPanel (Unit.PX); Style s = p.getElement ().getStyle ();

Re: DockLayoutPanel as root with fixed width

2014-04-17 Thread Jens
Apply width, margin:auto to the RootLayoutPanel itself. Then you can remove all styles from DockLayoutPanel and you should have scrollbars. Currently your RootLayoutPanel fills the whole screen and uses overflow:hidden which causes DockLayoutPanel to be hidden if it is wider than the

Couche Dao dans application gwt

2014-04-17 Thread Amir kessentini
hi :) I am trying to develop a small module that allows a user to connect to a application. I'm using the architecture mvp proposed by GWT.So, I develope the view, the present, the sychrones and asychcrones services and of course the implementation of the server that makes access to the

[gwt-contrib] Re: Setup Eclipse workspace for core development

2014-04-17 Thread Thomas Broyer
First, you should probably subscribe and post to https://groups.google.com/d/forum/google-web-toolkit-contributors for questions related to developing GWT itself (as opposed to developing *with* GWT) Cc'ing that group, please follow-up there. On Wednesday, April 16, 2014 4:03:20 PM UTC+2,

[gwt-contrib] Re: Setup Eclipse workspace for core development

2014-04-17 Thread Stephan Beutel
Hello Thomas, thanks a lot for your answer. Using the requestfactory-apt.jar from GWT_ROOT/build/lib/ did fix the problem with the annotation postprocessing. Ignoring the GWT Plugin errors everything is right now. But now I want to run a unit test (SimplePagerTest) and get the following

[gwt-contrib] Re: Setup Eclipse workspace for core development

2014-04-17 Thread Jens
Could not find the GWT compiler jarfile. Serialization errors might occur when accessing the persistent unit cache. Starting http://10.43.9.45:56704/com.google.gwt.user.cellview.CellView.JUnit/junit-standards.html?gwt.codesvr=10.43.9.45:56702on browser FF17 200 - GET

Re: [gwt-contrib] Re: Setup Eclipse workspace for core development

2014-04-17 Thread Stephan Beutel
Hello, This setting is correct. In eclipse i'm Not able to change the selection. Mit freundlichen Grüßen Best regards Stephan Beutel Am 17.04.2014 um 12:12 schrieb Jens jens.nehlme...@gmail.com: Could not find the GWT compiler jarfile. Serialization errors might occur when accessing the

[gwt-contrib] Incorporation of useful libraries into the core of GWT

2014-04-17 Thread Jamie Cramb
Hi all, We've been using GWT in house for a while now and have recently come across some great libraries that have made our GWT development much more productive. For example (and I'm sure others will have more great examples): - *RestyGWT* has provided us with a great programming model for

Re: [gwt-contrib] Incorporation of useful libraries into the core of GWT

2014-04-17 Thread Goktug Gokdogan
Actually we are mostly taking steps in the other direction, so that libraries grow independently from SDK releases; can freely evolve, get better or replaced by the others. We would like the core of the SDK to be 'less opinionated' about how things should be done. On Thu, Apr 17, 2014 at 3:13