Browser plugin

2013-02-27 Thread nalini . kar
GWT requires browser plugin Google Web Toolkit Developer Plugin to run it in Development mode... Does it require a browser plugin even to deploy in a application server(production mode)? Regards, Nalini. -- You received this message because you are subscribed to the Google Groups Google

asynchronous call back for client side method

2013-02-27 Thread karun kumar
Hi All, I am aware of remote procedure call (RPC) and using asynchronous call back in that. My question : is it possible to use asynchronous call back for client side method. for ex: client method 1 calls another client method 2, once call returns to client method 1 asynchronous call back

Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Dominic Warzok
Hey I try to use Super Dev Mode in my web app. But I always get the message Can't find any GWT Modules on this page. code serverhttp://127.0.0.1:9876/ I follow these Steps to get Super Dev Mode running in eclipse: 1. *add* add-linker name=xsiframe / set-configuration-property

Re: asynchronous call back for client side method

2013-02-27 Thread Jens
GWT has a generic callback interface that you can use as method parameter http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/core/client/Callback.java -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Browser plugin

2013-02-27 Thread Jens
After you have compiled your GWT app to JavaScript using the GWT compiler you don't need a plugin anymore as the browser now can execute the JavaScript directly. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Thomas Broyer
Did you compile your module once with the xsiframe linker and devModeRedirectEnabled? On Wednesday, February 27, 2013 10:09:59 AM UTC+1, Dominic Warzok wrote: Hey I try to use Super Dev Mode in my web app. But I always get the message Can't find any GWT Modules on this page. code

Re: Unable to install Window Builder Pro on Eclipse 4.2

2013-02-27 Thread Thomas Broyer
Please ask on https://groups.google.com/d/forum/google-plugin-eclipse (or on StackOverflow, as they moved their support there) On Wednesday, February 27, 2013 1:03:02 AM UTC+1, Nick Kloski wrote: Hi all...I want to learn more about the Window Builder Pro plugin to Eclipse and I am having

Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Dominic Warzok
Yes I did compile my module with the xsiframe and devModeRedirectEnabled. But it won't work. And yes you ar right Web_CAM is my web app so I went to localhost:/Web_CAM.html On Wednesday, February 27, 2013 10:39:36 AM UTC+1, Thomas Broyer wrote: Did you compile your module once with

Re: send event (click) to an external html page

2013-02-27 Thread Thomas Broyer
You can't. Wouldn't it be great if loading a website (which could just be an ad actually, so something that I didn't even *chose* to see) would load Twitter in an hidden iframe, fill the compose input and then programmatically click the Tweet button? (or variations along the way of Facebook,

Re: send event (click) to an external html page

2013-02-27 Thread Milan Cvejic
On the other hand, if you are loading iframe from the same domain, and have full control of iframe content you can use window.postMessage api for child - parent communication. You will need to implement some JSNI methods in order to accomplish this in GWT. Best, Milan On Wednesday, February

Re: send event (click) to an external html page

2013-02-27 Thread Thomas Broyer
On Wednesday, February 27, 2013 3:07:48 PM UTC+1, Milan Cvejic wrote: On the other hand, if you are loading iframe from the same domain, and have full control of iframe content you can use window.postMessage api for child - parent communication. If it's from the same origin, you don't

RequestFactory issue with overloaded setters in domain type

2013-02-27 Thread James Horsley
I'm running into an issue where RequestFactory isn't calling the correct setter on the domain object in DevMode and I've not tried it compiled yet. Looking at the code it appears that ReflectiveServiceLayer.getBeanMethod is just picking the first setter it finds based on SET/SET_BUILDER, are only

Re: Could not load GWT DMP Plugin

2013-02-27 Thread David Briney
I still ... months later ... have to remove GWT Plugin version 1.0.11338 several times daily and replace it with a reliable old version (9738). This is because 11338 crashes - will not load into Chrome 25.0.1364.97 m. To say this is aggravating is an understatement. Suggestions? On Fri, Jan 4,

Re: Unable to install Window Builder Pro on Eclipse 4.2

2013-02-27 Thread Nick Kloski
will do, thanks! On Wednesday, February 27, 2013 1:40:58 AM UTC-8, Thomas Broyer wrote: Please ask on https://groups.google.com/d/forum/google-plugin-eclipse (or on StackOverflow, as they moved their support there) On Wednesday, February 27, 2013 1:03:02 AM UTC+1, Nick Kloski wrote: Hi

Re: RequestFactory issue with overloaded setters in domain type

2013-02-27 Thread Thomas Broyer
On Wednesday, February 27, 2013 4:05:30 PM UTC+1, James Horsley wrote: I'm running into an issue where RequestFactory isn't calling the correct setter on the domain object in DevMode and I've not tried it compiled yet. Looking at the code it appears that

Re: send event (click) to an external html page

2013-02-27 Thread Milan Cvejic
Thanks Thomas for clarification of messaging api. I believed that it is working only on same domain and that it is build just to standardize communication. Best, Milan On Wed, Feb 27, 2013 at 3:24 PM, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, February 27, 2013 3:07:48 PM UTC+1,

Re: RequestFactory issue with overloaded setters in domain type

2013-02-27 Thread James Horsley
Thanks for the quick and detailed reply. Given a big win using RequestFactory is having it work well with existing server side data models it'd seem like something we'd want to fix, relative to other priorities of course. In this specifc case I don't own the domain class as it's from a 3rd party

Re: RequestFactory issue with overloaded setters in domain type

2013-02-27 Thread James Horsley
Issue filed https://code.google.com/p/google-web-toolkit/issues/detail?id=8039 On 27 February 2013 17:04, James Horsley james.hors...@gmail.com wrote: Thanks for the quick and detailed reply. Given a big win using RequestFactory is having it work well with existing server side data models

Re: How to disable drag and top on mouse move over image?

2013-02-27 Thread Manuel
Hey, even if this is a pretty old post, I had the same problem. I used to fix it this way: resizeImage.addMouseDownHandler(new MouseDownHandler(){ public void onMouseDown(MouseDownEvent event) { event.preventDefault(); }

Re: Could not load GWT DMP Plugin

2013-02-27 Thread Brian Slesinsky
Please uninstall and reinstall from the Chrome store to get the latest version (11357). On Wed, Feb 27, 2013 at 7:22 AM, David Briney david.bri...@gmail.comwrote: I still ... months later ... have to remove GWT Plugin version 1.0.11338 several times daily and replace it with a reliable old

Re: Could not load GWT DMP Plugin

2013-02-27 Thread David Briney
Why don't the automatic updates install 11357? I can attest, hundreds of times over, that the auto updates install 11338. And 11338 has issues. On Wed, Feb 27, 2013 at 12:53 PM, Brian Slesinsky skybr...@google.comwrote: Please uninstall and reinstall from the Chrome store to get the latest

Re: EAR application with war (GWT) and JPA

2013-02-27 Thread Kris
I ended up with a solution where I in the GWT server implementation convert the Entity Bean class to a plain POJO that implements IsSerializable. Not the nicest solution :) Kris On Thursday, February 21, 2013 4:33:20 PM UTC-8, Kris wrote: I have a maven project consisting of a parent

Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread emurmur
Here is a blog post I wrote on getting the code server running with the Elemental library. You might find stuff in it that is useful. http://lumpofcode.blogspot.com/2012/11/configuring-gwt-codeserver-and.html On Wednesday, February 27, 2013 1:09:59 AM UTC-8, Dominic Warzok wrote: Hey I try

adding custom widget to FormPanel

2013-02-27 Thread seven.reeds
Hi, I am using GWT 2.5.0. I have a FormPanel that has several normal form widgets. I have a custom widget that extends Composite and implements HasName and HasValueString. All the setters and getters are implemented. However, when the form is submitted it does not seem to recognized the

Re: EAR application with war (GWT) and JPA

2013-02-27 Thread Kara Marie Rawson
Yes, you loose alot of extensiblity with that, but it is a very stable solution though. Also can be a little restricting when you start dealing with nested DAO objects kara On Wed, Feb 27, 2013 at 4:47 PM, Kris kli...@gmail.com wrote: I ended up with a solution where I in the GWT server

Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Juan Pablo Gardella
See https://groups.google.com/group/google-web-toolkit/browse_thread/thread/efc1e5e3b7853cac/0d745bfee422f8eb 2013/2/27 emurmur emur...@conceptuamath.com Here is a blog post I wrote on getting the code server running with the Elemental library. You might find stuff in it that is useful.

[gwt-contrib] Change in gwt[master]: Remove unnecessary wrapping of IOException in DiskCacheToken...

2013-02-27 Thread Brian Slesinsky
Brian Slesinsky has uploaded a new change for review. https://gwt-review.googlesource.com/2020 Change subject: Remove unnecessary wrapping of IOException in DiskCacheToken. This just increases stack trace verbosity, since the callers either throw IOException already or could easily do

[gwt-contrib] Change in gwt[master]: Remove unnecessary wrapping of IOException in DiskCacheToken...

2013-02-27 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Remove unnecessary wrapping of IOException in DiskCacheToken. This just increases stack trace verbosity, since the callers either throw IOException already or could easily do so.

[gwt-contrib] Change in gwt[master]: Removes deprecated methods from JUnitShell.

2013-02-27 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/2030 Change subject: Removes deprecated methods from JUnitShell. .. Removes deprecated methods from JUnitShell. Change-Id:

[gwt-contrib] Change in gwt[master]: Removes deprecated methods from JUnitShell.

2013-02-27 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Removes deprecated methods from JUnitShell. .. Patch Set 1: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2030 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Remove unnecessary wrapping of IOException in DiskCacheToken...

2013-02-27 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Remove unnecessary wrapping of IOException in DiskCacheToken. This just increases stack trace verbosity, since the callers either throw IOException already or could easily do so.

[gwt-contrib] Change in gwt[master]: Fix SpeedTracer Log when compilation is spread across differ...

2013-02-27 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new change for review. https://gwt-review.googlesource.com/2031 Change subject: Fix SpeedTracer Log when compilation is spread across different processes. .. Fix SpeedTracer Log when

[gwt-contrib] Change in gwt[master]: Fix SpeedTracer Log when compilation is spread across differ...

2013-02-27 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Fix SpeedTracer Log when compilation is spread across different processes. .. Patch Set 1: Code-Review+1 Seems to make sense to me. -- To view, visit

[gwt-contrib] Re: Exposed ability for implmentations of Animation.java to check if the animation is currently running. (issue1891804)

2013-02-27 Thread skybrian
Why protected? Also, shouldn't the unit tests be updated? http://gwt-code-reviews.appspot.com/1891804/ -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To

[gwt-contrib] Re: Exposed ability for implmentations of Animation.java to check if the animation is currently running. (issue1891804)

2013-02-27 Thread mdempsky
http://gwt-code-reviews.appspot.com/1891804/diff/1/user/src/com/google/gwt/animation/client/Animation.java File user/src/com/google/gwt/animation/client/Animation.java (right): http://gwt-code-reviews.appspot.com/1891804/diff/1/user/src/com/google/gwt/animation/client/Animation.java#newcode203

[gwt-contrib] Re: Exposed ability for implmentations of Animation.java to check if the animation is currently running. (issue1891804)

2013-02-27 Thread mdempsky
On 2013/02/28 01:45:15, jtam wrote: Switched to Public. Not sure what you would like me to do in terms of unit tests. This is just exposing an internal which should be already tested. I think just adding appropriate asserts for isRunning()'s return value to AnimationTest would be sufficient.

[gwt-contrib] Change in gwt[master]: Fix SpeedTracer Log when compilation is spread across differ...

2013-02-27 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Fix SpeedTracer Log when compilation is spread across different processes. .. Patch Set 1: Code-Review+1 Sure, makes sense. -- To view, visit

[gwt-contrib] Change in gwt[master]: Fix SpeedTracer Log when compilation is spread across differ...

2013-02-27 Thread Roberto Lublinerman
Roberto Lublinerman has abandoned this change. Change subject: Fix SpeedTracer Log when compilation is spread across different processes. .. Abandoned Submitted, Thanks! -- To view, visit

[gwt-contrib] Re: Exposed ability for implmentations of Animation.java to check if the animation is currently running. (issue1891804)

2013-02-27 Thread goktug
http://gwt-code-reviews.appspot.com/1891804/diff/7001/user/src/com/google/gwt/animation/client/Animation.java File user/src/com/google/gwt/animation/client/Animation.java (right):