Re: GWT 2.5, when?

2012-06-27 Thread Ali Jalal
*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

Re: symbolMap files and packaging gwt project

2012-06-27 Thread Deepak Singh
Hi, But when we deploy app to appengiene through eclipse, it compiles the app and sets the deploy folder in war location. Here i did not find any option to set -deploy outside war while deploying through eclipse. It consumes the project size on app engiene. Any idea... On Thu, Jun 21, 2012 at

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

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

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(imageUrl) = no SOP.

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

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 ali.jal...@gmail.com 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,

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

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

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

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

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

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

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

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

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

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?

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

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

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 http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here http://developers.google.com/web-toolkit/download (bottom of the page). The RC has been uploaded to Maven Central with

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

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

Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Alain Ekambi
Super 2012/6/27 Rajeev Dayal rda...@google.com Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here http://developers.google.com/web-toolkit/download (bottom of

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 http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here

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

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

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

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

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

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 vere...@gmail.com 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

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

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

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

[gwt-contrib] Serialize Final Fields (issue1760803)

2012-06-27 Thread stephen . haberman
Reviewers: rdayal, scottb, Please review this at http://gwt-code-reviews.appspot.com/1760803/ Affected files: M user/src/com/google/gwt/rpc/rebind/RpcProxyCreator.java M user/src/com/google/gwt/rpc/server/HostedModeClientOracle.java M user/src/com/google/gwt/user/RemoteService.gwt.xml

[gwt-contrib] Re: Serialization of Final Fields in RPC (issue1380807)

2012-06-27 Thread stephen . haberman
On 2012/06/11 22:56:06, scottb wrote: Rajeev and I went through and made some rough comments Damn invalid XSRF token. You don't get as nice of a comment this time. Since I can't write to this issue, I made a new issue here, with patchset 1 being Yi's work that you reviewed, rebased against

[gwt-contrib] Re: Serialize Final Fields (issue1760803)

2012-06-27 Thread stephen . haberman
On 2012/06/27 16:19:30, stephenh wrote: Per comments on the original issue: http://gwt-code-reviews.appspot.com/1380807/ Patchset 1 here is Yi's work, Patchset 2 is my changes to address Rajeev's/Scott's feedback. http://gwt-code-reviews.appspot.com/1760803/ --

[gwt-contrib] GWT 2.5 RC1 Is Here!

2012-06-27 Thread rdayal
Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here http://developers.google.com/web-toolkit/download (bottom of the page). The RC has been uploaded to Maven Central with

[gwt-contrib] The comment for Style.clearFloat() is wrong (issue1762803)

2012-06-27 Thread tuckerpmt
Reviewers: , Description: Issue 7457 Please review this at http://gwt-code-reviews.appspot.com/1762803/ Affected files: user/src/com/google/gwt/dom/client/Style.java Index: user/src/com/google/gwt/dom/client/Style.java === ---

[gwt-contrib] Constraint Violations generated with custom paths now work correctly. (issue1763803)

2012-06-27 Thread idol
Reviewers: Nick Chalko, Description: Constraint Violations generated with custom paths now work correctly. [JSR 303 TCK Result] 161 of 205 (78.54%) Pass with 36 Failures and 7 Errors. Fixes issues: 6907 Please review this at http://gwt-code-reviews.appspot.com/1763803/ Affected files: M

[gwt-contrib] Re: Constraint Violations generated with custom paths now work correctly. (issue1763803)

2012-06-27 Thread nchalko
lgtm http://gwt-code-reviews.appspot.com/1763803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Reorganized the GWT test suite structure for the nested constraint composition tests to fix errors. (issue1765803)

2012-06-27 Thread idol
Reviewers: Nick Chalko, Description: Reorganized the GWT test suite structure for the nested constraint composition tests to fix errors. Previously the nested constraint composition tests would not work in a production (compiled JS) environment when included in a GWT test suite that also