Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
I was talking about ClientBundle, which means resources not embedded in and 
loaded by the website but dynamically loaded by the GWT app at runtime. 
ClientBundle has to use some mechanismn inside like XHR or JSONP or 
something when it turns data into ExternalTextResources or DataResources.

I know the app will work if people take everything (the HTML host page, the 
full app and all the ClientBundle resources) and place them on their 
server. However I am interested in the case that people will embed just the 
bootstrap-JS file in their webpage. I know that apps fully work this way. 
What I have no experience in is if this app will work if it uses 
ClientBundle to load additional resources from app code.

One would think ClientBundle JavaDocs would have a big warning that it 
fails if used this way, right?

On Tuesday, June 26, 2012 5:57:11 PM UTC+2, Joseph Lust wrote:
>
> Carsten,
>
> I've not done this myself, but loading image, js, and text files should 
> not be a problem since SOP only limits XHR requests. However, if they have 
> an HTTPS site, and your content is not served from such a domain, they 
> would get warnings.
>
> Of course, you'd best setup a testbed to confirm this functionality before 
> building it out.
>
> Sincerely,
> Joseph
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/9sl1CZPYXgEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Communicating with the server

2012-06-27 Thread Chris Price
You could try Errai -

http://www.jboss.org/errai

"Talking to the server is much easier, too! Leveraging ErraiBus, you
can transparently and easily mix event-based and RPC-based
functionality in your app as neccessary. When leveraging the bus,
everything in your app is push, everything is asynchronous! "

On Tue, Jun 26, 2012 at 11:30 AM, Emil Daoura  wrote:
> Hi,
>
> I am new in GWT.
>
> I have a question about the Communication between a client and a server.
>
> I would like to create a GWT application that can do the following:
>
> The client A fires an event to the server and the server in his turn fire an
> event to the client B.
> Here the client B has to be able to listen to the event all the time.
>
> I wanted to send some event with few data in real time to a connected client
> B.
> is that possible? and if yes how can I do that?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/ePbehCWHbGsJ.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Jens
CssResource: works as its inlined into your JavaScript to avoid round trip 
times.

ImageResource: should work as you typically use it with GWT's @Sprite in 
CSS or in combination with GWT's Image class. In both cases the image will 
be loaded via CSS background-image: url() => no SOP.

DataResource: With DataResource you only have DataResource.getUrl() to 
access it. So it depends on yourself and how you load the url. If you load 
it via XHR you have a SOP problem. But if its for example a custom mouse 
cursor and you set the url to CSS cursor:url() its not a problem.

TextResource: Are inlined into your JS and should work, but there is a max 
limit in text size (see: TextResourceGenerator.MAX_STRING_CHUNK and its 
JavaDoc).

ExternalTextResource: Are loaded async (XHR) and wouldn't work but it seems 
like there is a configuration property that tells GWT to load the 
ExternalTextResource via JSONP (see: 
ExternalTextResourceGenerator.USE_JSONP and its JavaDoc). So you would use 
 in your module.gwt.xml.


Also you should be able to test all this very easily by creating a mini 
project only containing a ClientBundle and some code which uses it, compile 
it and load it from a different domain. E.g. serve it from localhost and 
access it from 127.0.0.1 or edit your systems hosts file and add some more 
domain names for your local host, e.g. 127.0.0.1 localhost test-domain1.com 
test-domain2.com.


-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qkSCW4jdvGUJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-06-27 Thread Albert Attard
No one managed to install GWT Plugin on Eclipse 3.8 (Juno 4.2)?

Regards,
Albert

On Monday, June 25, 2012 7:29:07 PM UTC+2, Albert Attard wrote:
>
> Hi everyone,
>
> The GWT Plugin update site (
> https://developers.google.com/eclipse/docs/download) only have links upto 
> Eclipse 3.7 (Indigo).
>
> Is it possible to install the GWT Plugin on Eclipse 3.8 (Juno 4.2)?  I've 
> followed the article: 
> https://plus.google.com/110140945975184013033/posts/ePFpQZYhPQq, but no 
> luck.
>
> Regards
> Albert
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ORzNQECsjI4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5, when?

2012-06-27 Thread Chris Price
Are there plans for RC-1 to go into the maven repo?

On Wed, Jun 27, 2012 at 7:11 AM, Ali Jalal  wrote:
> Many thanks for releasing and announcing!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWTTest Case Error - Cross Talk Between TestClasses - Am I crazy?

2012-06-27 Thread Colin Alworth
The callbacks you are configuring aren't running until the later test is in 
the middle of working. You are using the finishTest() and 
delayTestFinish(int) correctly in your first test, but the second has a 
pair of asserts going off asynchronously, but you are not delaying that 
test's completion. As a result, when the test order is randomized, 
testGetSummaryData gets killed off when the zoom out animation callback 
completes (and fails!).

When run in the other order, no failure apparently occurs because that 
callback finishes after the test is done, so the test system doesnt have 
anywhere to report that failure to.

To fix this, try adding finishTest/delayTestFinish to the zoomOut test.


On Friday, June 22, 2012 1:45:33 PM UTC-5, Joseph Lust wrote:
>
> I have no idea what is going on here. The gist:
>
>
>- GWTTestSuite is reporting MeasureDTOCacheTest is failing at 
>on testGetSummaryData()
>- The output for the above is showing the failing assert 
>in ZoomOutAnimationTest.zoomOutAnimationTest() 's onComplete() method
>
> On checking, there is no link, at all between these two test cases. 
> Nothing is shared in common and neither call anything having to do with the 
> other. 
>
> AND this test has passed 5000 times, but recently, on a new build agent 
> (VM Ubunut 12.04 1GB ram, x64) it fails 50% of the time. There are 4 more 
> identical clones of this VM and they never fail.
>
>
> Here is the kicker, the failure in ZoomOutAnimationTest is because it was 
> written wrong. It makes a scheduled event for 1s, but the dev never delayed 
> the test finish, so the asserts in onComplete() never ran. But now, that 
> onComplete() is getting run, from MeasureDTOCacheTest. Is this a thread 
> safety bug in GWTTestCase and GWTTestSuite?
>
>  // MeasureDTOCacheTest.java
> public void testGetSummaryData() {
>
> delayTestFinish(AJAX_TEST_FINISH_DELAY); // put test into async mode
> //run
> service.getSummaryData(new 
> AsyncCallbackProvider() {
> @Override
> public void onSuccess(MeasureDTOContainer result) {
> Assert.assertNotNull( result.getMeasureDTOArr() ); // should 
> be original model
> finishTest(); 
> }
> });
> }
>
> // ZoomOutAnimation.java
> public void testZoomOutAnimation() {
> ElementWrapper containerElement = new MockElementWrapper(645, 455);
> final ElementWrapper zoomingElement = new MockElementWrapper(1122, 
> 792, -337, -447);
>
> ZoomOutAnimation zoomOutAnimation = new 
> ZoomOutAnimation(containerElement) {
> @Override
> protected void onComplete() {
> super.onComplete();   
> // animation will take size from 0->testHeight, test that it 
> ends at testHeight
> assertEquals(645, zoomingElement.getHeight()); // this was 
> wrong, so it will always fail
> assertEquals(455, zoomingElement.getWidth());
> }
> };
> zoomOutAnimation.run(1000); // scheduled for 1s, but then thread 
> exits, so onComplete() never run
> }
>
>
>
> The trace:
>
> Tests run: 191, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 72.559 
> sec <<< FAILURE!
> *testGetSummaryData*(com.foo.client.resources.cache.*MeasureDTOCacheTest*) 
>  Time elapsed: 3.487 sec  <<< FAILURE!
> junit.framework.AssertionFailedError: Remote test failed at 127.0.0.1 / 
> Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19) 
> Gecko/2010031422 Firefox/3.0.19
> expected=645 actual=1122
> at junit.framework.Assert.fail(Assert.java:197)
> at junit.framework.Assert.assertEquals(Assert.java:94)
> at junit.framework.Assert.assertEquals(Assert.java:43)
> at com.foo.client.widgets.documents.animations.*ZoomOutAnimationTest*
> $1.onComplete(ZoomOutAnimationTest.java:22)
> at com.google.gwt.animation.client.Animation.update(Animation.java:232)
> at 
> com.google.gwt.animation.client.Animation.updateAnimations(Animation.java:55)
> at com.google.gwt.animation.client.Animation.access$0(Animation.java:47)
> at com.google.gwt.animation.client.Animation$1.run(Animation.java:148)
> at com.google.gwt.user.client.Timer.fire(Timer.java:141)
> at sun.reflect.GeneratedMethodAccessor64.invoke(Unknown Source)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:616)
> at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
> at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
> at 
> com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:167)
> at 
> com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:326)
> at 
> com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:207)
> at 
> com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOO

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
Thanks. Very helpful. From what I am reading I guess the 
ExternalTextResource cannot switch to JSONP at runtime? I can test at 
runtime if the HTML host page domain is different from the Module domain 
and activate it at runtime.

Maybe I will use ExternalTextResource then. I need to check first if it 
bundles all ExternalTextResource resources in a single file which I 
wouldn't like. Maybe I remember it incorrectly and it was TextResource 
which does the bundling.

On Wednesday, June 27, 2012 11:08:59 AM UTC+2, Jens wrote:
>
> CssResource: works as its inlined into your JavaScript to avoid round trip 
> times.
>
> ImageResource: should work as you typically use it with GWT's @Sprite in 
> CSS or in combination with GWT's Image class. In both cases the image will 
> be loaded via CSS background-image: url() => no SOP.
>
> DataResource: With DataResource you only have DataResource.getUrl() to 
> access it. So it depends on yourself and how you load the url. If you load 
> it via XHR you have a SOP problem. But if its for example a custom mouse 
> cursor and you set the url to CSS cursor:url() its not a problem.
>
> TextResource: Are inlined into your JS and should work, but there is a max 
> limit in text size (see: TextResourceGenerator.MAX_STRING_CHUNK and its 
> JavaDoc).
>
> ExternalTextResource: Are loaded async (XHR) and wouldn't work but it 
> seems like there is a configuration property that tells GWT to load the 
> ExternalTextResource via JSONP (see: 
> ExternalTextResourceGenerator.USE_JSONP and its JavaDoc). So you would use 
>  value="true" /> in your module.gwt.xml.
>
>
> Also you should be able to test all this very easily by creating a mini 
> project only containing a ClientBundle and some code which uses it, compile 
> it and load it from a different domain. E.g. serve it from localhost and 
> access it from 127.0.0.1 or edit your systems hosts file and add some more 
> domain names for your local host, e.g. 127.0.0.1 localhost 
> test-domain1.com test-domain2.com.
>
>
> -- J.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/MQfsBc7M0FgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Jens

>
> From what I am reading I guess the ExternalTextResource cannot switch to 
> JSONP at runtime?


Correct, you can not switch at runtime because different code is generated 
during compilation based on the mentioned configuration property. 

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Wo5XWA9sNlgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



reverse proxy issue with rpc

2012-06-27 Thread Thomas Lefort
I have the following problem:
- I have a web application installed on a customer's server and running 
with jetty at /ksatweb. The application module is named kweb.
- the application is available on the web through a reverse proxy and 
mapped to https://portal.ksat.no/ordering/ksatweb/

The issue I get is when using rpc. Below is the error message I get. I 
tried many work arounds, found by googling the issue but none worked, eg I 
have no control over the proxy configuration so the use of headres is not 
possible, etc... If anybody has an idea how to get me out of there, I am 
ready to do some dirty hack to get this to work...

Thanks in advance,

2012-06-27 16:16:11.752:INFO:/ksatweb:ResourcesService: ERROR: The module 
path r
equested, /ordering/ksatweb/kweb/, is not in the same web application as 
this se
rvlet, /ksatweb.  Your module may not be properly configured or your client 
and
server code maybe out of date.
2012-06-27 16:16:11.752:INFO:/ksatweb:ResourcesService: WARNING: Failed to 
get t
he SerializationPolicy '2225236803D085D4C928146663661808' for module 
'https://po
rtal.ksat.no/ordering/ksatweb/kweb/'; a legacy, 1.3.3 compatible, 
serialization
policy will be used.  You may experience SerializationExceptions as a 
result.
2012-06-27 16:16:11.768:WARN:/ksatweb:Exception while dispatching incoming 
RPC c
all
com.google.gwt.user.client.rpc.SerializationException: Type 
'com.metaaps.webapps
.ksatweb.shared.entity.User' was not assignable to 
'com.google.gwt.user.client.r
pc.IsSerializable' and did not have a custom field serializer.For security 
purpo
ses, this type will not be serialized.: instance = 
com.metaaps.webapps.ksatweb.s
hared.entity.User@371d6be8

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/bXQD1IY6DesJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Custom Widget in FlowPanel seem not to work

2012-06-27 Thread AngeloSchneider
Hi everyone,

I tried to build my own Widget (following this 
example: 
http://code.google.com/p/google-web-toolkit-doc-1-4/wiki/DevGuideCreatingCustomWidgets)

However when I place the resulting Widget into a FlowPanel, it is layouted 
from top to down, like in a VerticalPanel.

I'm using GWT SDK 2.3.0 right now. 

My widget is basically a VerticalPanel containing a header, a content part 
and a footer. When I simply add some VerticalPanel(s) to the FlowPanel the 
result looks the same. 

What I want to do is the following: I like to display some data in a kind 
of Tile, that Tile should be placable in any Panel. Perhaps you have a 
suggestion how to program such a Tile?

Best Regards,
Angelo

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/1653A3V045gJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: reverse proxy issue with rpc

2012-06-27 Thread Jens
You have to overwrite RemoteServiceServlet.doGetSerializationPolicy(...) 
and adjust it to your needs as the default implementation does not work 
with your setup.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/okklCvB5ZlkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



issue with rpc when behind a reverse proxy

2012-06-27 Thread Thomas Lefort
(this is a repost, I had to change some content)

I have the following problem:
- I have a web application installed on a customer's server and running 
with jetty at /ksatweb. The application module is named kweb.
- the application is available on the web through a reverse proxy and 
mapped to https://website.com/ordering/ksatweb/

The issue I get is when using rpc. Below is the error message I get. I 
tried many work arounds, found by googling the issue but none worked, eg I 
have no control over the proxy configuration so the use of headres is not 
possible, etc... If anybody has an idea how to get me out of there, I am 
ready to do some dirty hack to get this to work...

Thanks in advance,

2012-06-27 16:16:11.752:INFO:/ksatweb:
ResourcesService: ERROR: The module path requested, 
/ordering/ksatweb/kweb/, is not in the same web application as this 
servlet, /ksatweb.  Your module may not be properly configured or your 
client and server code maybe out of date.
2012-06-27 16:16:11.752:INFO:/ksatweb:ResourcesService: WARNING: Failed to 
get the SerializationPolicy '2225236803D085D4C928146663661808' for module '
https:// website.com/ordering/ksatweb/kweb/'; a legacy, 1.3.3 
compatible, serialization policy will be used.  You may experience 
SerializationExceptions as a result.
2012-06-27 16:16:11.768:WARN:/ksatweb:Exception while dispatching incoming 
RPC call com.google.gwt.user.client.rpc.SerializationException: Type 
'com.metaaps.webapps.ksatweb.shared.entity.User' was not assignable to 
'com.google.gwt.user.client.r pc.IsSerializable' and did not have a custom 
field serializer.For security purposes, this type will not be serialized.: 
instance = com.metaaps.webapps.ksatweb.s hared.entity.User@371d6be8

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/FOkWmRL4PIgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Custom Widget in FlowPanel seem not to work

2012-06-27 Thread Jens

>
> However when I place the resulting Widget into a FlowPanel, it is layouted 
> from top to down, like in a VerticalPanel.
>

Your widget needs some CSS rules (probably display:inline) so it does not 
fill up the entire width of the FlowPanel. If there is no horizontal space 
available FlowPanel can only layout its childs vertically (FlowPanel is 
only a simple  block)

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/s5V-rAr6fh4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: issue with rpc when behind a reverse proxy

2012-06-27 Thread Jens
Same 
answer: 
https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/f9FFjvQd1xg

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/boj1i4HIBdYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Loading third-party Javascript with a script loader

2012-06-27 Thread Joseph Lust

>
> At the moment we have quite a few script files and the only way we were 
> able to get GWT and our product to work together is by adding all imports 
> manually into the HTML file (which forces them to be loaded before GWT). 


Could you please explain why this is the only way they will work? What 
happens when you use "

Re: Firefox 13 DevMode Plugin

2012-06-27 Thread Riley
Yes, we are experiencing memory problems with Mac OS 10.7, FF13, and this 
new plugin

On Friday, June 15, 2012 5:06:40 AM UTC-5, Bas wrote:
>
> Today, I downgraded to Firefox 11. The devmode plugin of firefox 13 (Mac 
> OS 10.6.8) seems to have a memoryleak. Are more people experiencing memory 
> problems?
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CihIV9kGKjsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Deferred Binding with ClientBundle

2012-06-27 Thread Joseph Lust
Yes, Pure SVG would need an image for for IE. If you use RaphaelJs though, 
you can use the SVG on IE.

Joe

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/TBBT8wz4rcAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT 2.5 RC1 Is Here!

2012-06-27 Thread Rajeev Dayal
Hey all,

We're excited to announce the GWT 2.5 Release Candidate! Read about it on 
the GWT Blog , and 
download it here  (bottom 
of the page). The RC has been uploaded to Maven Central with the version 
string of 2.5.0-rc1.

Please give it a try and let us know your feedback! Also, many thanks to 
all of you for your contributions. Without your help, we wouldn't have had 
a GWT 2.5 release at all!


-Rajeev, on behalf of the GWT team

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/PvOse0s5gwAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



get the country and city from latitude and longitude

2012-06-27 Thread ambasibe
Hi everyone,

Can someone tells me what class use to be able to get country's name and 
city's name by giving its latitude and longitude ?

Thank to all, best regards.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CEc3ClWmiXEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to dynamically resize the table width after adding/removing columns?

2012-06-27 Thread javadev79
How do I ensure the datagrid expands to the total columns width or shrinks 
to the minimum table width on adding/removing columns?

Using refreshColumnWidths() after add/remove columns has no effect.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/upb2QEnRYeAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Alain Ekambi
Super 

2012/6/27 Rajeev Dayal 

> Hey all,
>
> We're excited to announce the GWT 2.5 Release Candidate! Read about it on
> the GWT Blog ,
> and download it here  
> (bottom
> of the page). The RC has been uploaded to Maven Central with the version
> string of 2.5.0-rc1.
>
> Please give it a try and let us know your feedback! Also, many thanks to
> all of you for your contributions. Without your help, we wouldn't have had
> a GWT 2.5 release at all!
>
>
> -Rajeev, on behalf of the GWT team
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/PvOse0s5gwAJ.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Handw
So good to hear this news. Thank you GWT team.

On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote:
>
> Hey all,
>
> We're excited to announce the GWT 2.5 Release Candidate! Read about it on 
> the GWT Blog , 
> and download it here  
> (bottom 
> of the page). The RC has been uploaded to Maven Central with the version 
> string of 2.5.0-rc1.
>
> Please give it a try and let us know your feedback! Also, many thanks to 
> all of you for your contributions. Without your help, we wouldn't have had 
> a GWT 2.5 release at all!
>
>
> -Rajeev, on behalf of the GWT team
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/4QIMj6BQiNYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to use Super Dev Mode

2012-06-27 Thread Brian Slesinsky
If your source code gets compiled to a jar on the code server's classpath, 
the code server likely won't see any changes. We normally use the -src 
argument to point to the source directory where the files are that you're 
editing, so I know that part works. I'm not sure about changes to things on 
the classpath.

- Brian

On Saturday, June 23, 2012 3:10:26 PM UTC-7, Johannes Barop wrote:
>
> I'm still  having troubles to see any changes.
>
> 1.) The App is loaded through the CodeServer
> 2.) I change something in the code.
> 3.) I recompile the module by hitting "Dev Mode on"
> 4.) I reload the page
>
> --> I do not see the changes I did to the source.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/POSljxAWj6wJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to get the javascript code

2012-06-27 Thread Joseph Lust
Set compilation to "PRETTY" mode and then use Chrome dev tools', or 
Firefox's Firebug to view the script that was passed to your browser.

Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/r4DbRTJXEJkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWTTest Case Error - Cross Talk Between TestClasses - Am I crazy?

2012-06-27 Thread Joseph Lust
Colin,

Thanks. That fix is how I fixed it, but I did not expect that JUnit would 
report the failure of one test as the failure of another, unrelated async 
test. That is what I can't figure out.

Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/JKCgks-I0-QJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Widgets Do Not Resize In Relation To Browser

2012-06-27 Thread KGD
How do you ensure that GWT components automatically resize appropriately 
when the browser window resizes?  I've tried setting the component 
height/width to 100% and the components still remain fixed dimensions.  

Thanks,
KGD

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/4jzqnUumNXAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Inderjeet Singh
Congrats GWT team! 

I am hoping that JRE emulation is more complete than previous versions. I 
am tired of not being able to use some simple JDK classes or methods such 
as Deque. The problem is exacerbated for us since we are trying to use 
PlayN framework to write cross-platform code.

Can anyone shed light on any additions to JRE emulation capabilities of GWT 
in 2.5?
Thanks
Inder



-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Biwmc_6DytoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Dharmesh
Thanks Rajeev.

Sent from my iPad

On Jun 27, 2012, at 6:16 PM, Handw  wrote:

> So good to hear this news. Thank you GWT team.
> 
> On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote:
> Hey all,
> 
> We're excited to announce the GWT 2.5 Release Candidate! Read about it on the 
> GWT Blog, and download it here (bottom of the page). The RC has been uploaded 
> to Maven Central with the version string of 2.5.0-rc1.
> 
> Please give it a try and let us know your feedback! Also, many thanks to all 
> of you for your contributions. Without your help, we wouldn't have had a GWT 
> 2.5 release at all!
> 
> 
> -Rajeev, on behalf of the GWT team
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google Web Toolkit" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msg/google-web-toolkit/-/4QIMj6BQiNYJ.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Widgets Do Not Resize In Relation To Browser

2012-06-27 Thread Steve
Wrap it in a resizeLayoutPanel. Then you can set set a resizeHandler. When that 
triggers, get the new height and width of the resizePanel and resize the 
widgets inside it proportionately. You may need to play around with the width 
to subtract the width of the scroll bars. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/WuPe6OLPQfYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Google IO - Anybody up for a GWT meetup?

2012-06-27 Thread Daniel Kurka
I am always up for a GWT chat. give me a ping on twitter tomorrow on IO: 
@dankurka

Am 27.06.2012 um 02:07 schrieb István Szoboszlai:

> Hello Guys,
> 
> I already have one GWT developer in the team. We still accept new 
> applications :)
> 
> I also have a US phone number now in case anybody would like to meet eg. at 
> the after hour party: +1 510 479 4814
> 
> If not, have a nice IO, or a nice day! :)
> 
> Üdvözlettel / Best Regards
> - István Szoboszlai
> istvan.szobosz...@inepex.com | +36 70 32 64 450 | inepex.com
> 
> 
> On Sat, Jun 23, 2012 at 12:33 PM, István Szoboszlai  wrote:
> Hello,
> 
> I will attend google IO next week. 
> 
> I am already in SF, so if anybody is up to meet and chat about GWT (or 
> anything else:) ), write me!
> We could do a small meetup in a coffe shop. If any Googler would be 
> interested that would be even more awesome.
> 
> Üdvözlettel / Best Regards
> --
> István Szoboszlai | +36703264450 | istvan.szobosz...@inepex.com
>  http://inepex.com | IT Development and Location Based Services
> 
> 
> 
> 
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



HandlerManager for Cells

2012-06-27 Thread Mohit
Hello everybody,

I have a requirement in my project to have event handlers to cells. For 
example, there is a TextInputCell to which I want to attach a handler to 
focus event. But AbstractCell doesn't provide any HandlerManager 
functionality to which I can add a handler.

Does anybody has suggestions on how to implement this? Shall I extend 
TextInputCell and add HandlerManager to it?

Thanks
Mohit

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qS4n1cyZBJYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.