Re: GWT 2.5.1 now available

2013-03-12 Thread alucard
Thank You for the great work, it is much appreciated. Keep the new stuff coming. On Tuesday, March 12, 2013 2:11:16 AM UTC+1, Matthew Dempsky wrote: Hi everyone, We're excited to announce the GWT 2.5.1 release! There will be an announcement soon on the GWT Blog

How to align only one CellTable Header to the right?

2013-03-12 Thread membersound
Hi, I have a CellTable with Columns whose Headers are all aligned to the left: For only one Header I want to align it to the right, as I also align the column.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_RIGHT); cellTable.addColumn(myColumn, right aligned); How can I apply the same to

Re: GWT WebApp and iOS 6 Safari

2013-03-12 Thread Jens
This is a bit old, but in the interest of linking information here's a blog post I found on this issue with another workaround: http://deploythoughts.blogspot.com/2012/11/gwt-webapp-and-ios-6-safari.html. That workaround did the trick for us. I don't think thats a good workaround. You

Re: Reg:Dozer DTO generation

2013-03-12 Thread nalini . kar
On Wednesday, January 30, 2013 12:02:30 PM UTC+1, nalin...@googlemail.com wrote: In GWT documentation in https://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate?hl=en under using dozer for hibernate integration, it is mentioned that it is possible to generate DTOs

seedTable error in web mode?

2013-03-12 Thread Ed
My gwt app 2.5.0 doesn't work well in web mode (it does in dev mode) and it keeps showing me the following error in the browser console: --- TypeError: com_google_gwt_lang_SeedUtil_seedTable[id] is not a constructor --- Any idea? - Ed -- You received this message because you are

Re: GWT 2.5.1 now available

2013-03-12 Thread Alex opn
Just upgraded. Works, thanks! Please announce when the maven plugin gets updated, too! Am Dienstag, 12. März 2013 02:11:16 UTC+1 schrieb Matthew Dempsky: Hi everyone, We're excited to announce the GWT 2.5.1 release! There will be an announcement soon on the GWT Blog

Re: Reg:Dozer DTO generation

2013-03-12 Thread Ed
You can't generate them with Dozer. Dozer isn't a generation tool. You can write code yourself to generate them or just make them by hand and use a good IDE to help you with that.. It might be a bit of work to do it by hand, by on the other hand, once you have them, you probably hardly change

Re: GWT 2.5.1 now available

2013-03-12 Thread Thomas Broyer
On Tuesday, March 12, 2013 2:46:45 PM UTC+1, Alex opn wrote: Just upgraded. Works, thanks! Please announce when the maven plugin gets updated, too! The gwt-maven-plugin is not (yet) from the same developers as GWT itself. I happen to be the one that makes the gwt-maven-plugin releases

Inline top and left properties cleared when removing child from parent?

2013-03-12 Thread GWTter
Hi everyone, I noticed that when removing an absolutely positioned child which has top and left style properties set inline from its parent that these top and left are cleared from the inline style of the child. Thus if you remove the child from the parent and then add it back the child won't

Re: Inline top and left properties cleared when removing child from parent?

2013-03-12 Thread Thomas Broyer
You're using an AbsolutePanel (which a RootPanel also is BTW), and an AbsolutePanel, by definition takes control of the position of its children. When removing a widget from an AbsolutePanel, so as to not cause issues when adding that same widget into another panel (FlowPanel, HorizontalPanel,

Re: Inline top and left properties cleared when removing child from parent?

2013-03-12 Thread Jens
Normally you are supposed to use AbsolutePanel.add(Widget w, int left, int top) to add a child widget. This method overrides the CSS properties position, top and left of the provided widget so it can be positioned absolutely. When removing the child from AbsolutePanel these CSS changes are

Re: GWT 2.5.1 now available

2013-03-12 Thread Juan Pablo Gardella
Thanks Thomas! 2013/3/12 Thomas Broyer t.bro...@gmail.com On Tuesday, March 12, 2013 2:46:45 PM UTC+1, Alex opn wrote: Just upgraded. Works, thanks! Please announce when the maven plugin gets updated, too! The gwt-maven-plugin is not (yet) from the same developers as GWT itself. I

GWT Community Hangout

2013-03-12 Thread Brandon Donnelson
Scheduled GWT Community Hangout... Hangout: https://plus.google.com/u/0/events/cv5u0302d3ne1a0td9nnihq6j94?authkey=CKGR6fWCvKGG5QE Hangout Talk Signups: https://docs.google.com/spreadsheet/ccc?

Re: Inline top and left properties cleared when removing child from parent?

2013-03-12 Thread GWTter
Yup, You guys are totally right. Changing the parent to a FlowPanel keeps the positioning when removing the child. I guess I was thinking from the doc that it would only be cleared if the positioning was modified while the child was a child of the absolutepanel (even though I know there's no

Converting JavaScript project to GWT component

2013-03-12 Thread Ben Cuthbert
Has anyone got any good tutorials on converting Javascript projects like http://needim.github.com/noty/ to GWT components? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it,

com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details only when running on external server in Myeclipse

2013-03-12 Thread svkirans
Hi, I am getting the below exception while trying to use RPC. com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details at com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceived(RequestCallbackAdapter.java:209)

Re: com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details only when running on external server in Myeclipse

2013-03-12 Thread Jens
The call is definitely hitting your server so you have to dig for server logs. Maybe logging is disabled/misconfigured on your external server? Alternatively you could use Java's remote debugging features to connect to your external application server to see whats going on by using breakpoints

Re: Reg:Dozer DTO generation

2013-03-12 Thread Gibson
Net Beans is a handy with DTO generation,with a connection to your DS,There's a wizard to generate DTOs from entities On Tue, Mar 12, 2013 at 4:51 PM, Ed post2edb...@gmail.com wrote: You can't generate them with Dozer. Dozer isn't a generation tool. You can write code yourself to generate

Not Able to install Google Web Toolkit Developer Plugin in IE7 for GWT2.4

2013-03-12 Thread Bibhudatta Jena
Hi, I am tryting to install the GWT plugin for IE7.But it is not working and gives the below error .Earlier hostedmode was fine with GWT1.7. But recently we upgraded to GWT2.4 and hence came across with this problem. Error during instllation: The installer couldn't connect to the Internet

Java7 Langauge Feature Support

2013-03-12 Thread Stefan McDaniel
The company I work for uses GWT in a fashion that allows us to reuse logic that was originally run only on the server. Since this server code changes over time, and the company updates to the latest version of Java fairly quickly, there is a growing amount of developers using Java7 language

GWT serialization problem

2013-03-12 Thread Вадим Коваленко
Hello, in my app I faced a problem when reloading some pages. The error is: com.google.gwt.user.client.rpc.SerializationException: java.lang.RuntimeException: Unable to find class com.google.gwt.user.client.rpc.core.java.lang.Long_FieldSerializer I've downloaded gwt sources and found that

Re: com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details only when running on external server in Myeclipse

2013-03-12 Thread Andrew Phillips
What version of GWT are you using? On Tuesday, March 12, 2013 1:11:12 PM UTC-4, svkirans wrote: Hi, I am getting the below exception while trying to use RPC. com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details at

Re: Local Sessions and Persistent Storage in GWT?

2013-03-12 Thread sanjana agarwal
I am trying to implement simple animations for my chess program , its based on MVP+GWT. ANy suggestions? We can't use gwtquery and DND. With canvas it seems a very long and rocky process -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Shindig Gadget container for GWT

2013-03-12 Thread Tõnis Ostrat
Hello, everybody. I'm working on a GWT application that integrates the Shindig platform for gadget cross-compatibility with iGoogle and JIRA. Has anyone ever heard of or seen a GWT-specific client-side gadget container or do I have to roll my own? -- You received this message because you are

Cannot get work GWT Developer Plugin in FF/Chrome

2013-03-12 Thread gernot . veith
hi, I'm using GWt 2.5.1 with Eclipse Juno on ubuntu 12.10 64Bit. When I try to start the browser from within the dev mode view in eclipse, the selected browser opens and says that the plugin is needed. But it's already installed and active. Happens on FF19 and current Chrome. Any help? TIA

Closing GWT application

2013-03-12 Thread nalini . kar
Hi, I use JSNI code public static native void closeBrowser() /*-{ $wnd.close(); }-*/; to close my GWT app. It doesnt work with browsers other than IE Any suggestions? Regards, Nalini.K -- You received this message because you are subscribed to the Google Groups

Temporary files

2013-03-12 Thread nalini . kar
Hi, I find that GWT generates a lot of temp files while testing in development mode It doesnt generate such files while deploying in production moderight? Regards, Nalini.K -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details only when running on external server in Myeclipse

2013-03-12 Thread kiran surapaneni
I am using GWT 2.5 On Wed, Mar 13, 2013 at 2:04 AM, Andrew Phillips theampers...@gmail.comwrote: What version of GWT are you using? On Tuesday, March 12, 2013 1:11:12 PM UTC-4, svkirans wrote: Hi, I am getting the below exception while trying to use RPC.

Re: Java7 Langauge Feature Support

2013-03-12 Thread Michael Prentice
2.5.1 release notes include the following: *Developer Mode* *Fixed compatibility with OpenJDK 7.* I don't believe that that includes support for Java 7 language features though. This same discussion already exists here:

Re: Closing GWT application

2013-03-12 Thread Michael Prentice
Here is how you do it on Chrome and IE: http://productforums.google.com/forum/#!topic/chrome/GjsCrvPYGlA http://productforums.google.com/forum/#!topic/chrome/k7aKtZlalqU script type = text/javascript function closeWindow(){ window.open('','_self',''); window.close(); }

Re: GWT 2.5.1 now available

2013-03-12 Thread Rob
Hi, Many thanks to the GWT team. http://blog.websitesframeworks.com/2013/03/web-frameworks-statistics-174/#husage Best growth in 12 months is presented by GWT in all the tops. Cheers Rob -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

[gwt-contrib] Change in gwt[master]: set target and source level to 1.6 for JSP compilation

2013-03-12 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/2201 Change subject: set target and source level to 1.6 for JSP compilation .. set target and source level to 1.6 for JSP compilation

[gwt-contrib] Change in gwt[master]: set target and source level to 1.6 for JSP compilation

2013-03-12 Thread Daniel Kurka
Daniel Kurka has uploaded a new patch set (#2). Change subject: set target and source level to 1.6 for JSP compilation .. set target and source level to 1.6 for JSP compilation Using JSP pages with syntax features java 1.4

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has uploaded a new change for review. https://gwt-review.googlesource.com/2210 Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Prevent dev mode breakage when lots of jso classes

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 1: (1 comment) Not sure if it helps to move from rietveld to here, but I moved it

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 1: Unless John is OK with that, can you give him credit by setting him as the

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 1: BTW, I think you should also rebase on top of master, rather than another

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has uploaded a new patch set (#2). Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Prevent dev mode breakage when lots of jso classes are used. Elemental introduces a lot of native

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 2: I rebased on master, but couldn't switch username to give john proper credit 'cos

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 2: (1 comment) File

[gwt-contrib] Change in gwt[master]: Prevent dev mode breakage when lots of jso classes are used.

2013-03-12 Thread James Nelson
James Nelson has posted comments on this change. Change subject: Prevent dev mode breakage when lots of jso classes are used. .. Patch Set 2: (2 comments) Marked points in code that may need to change / be checked against

[gwt-contrib] Change in gwt[master]: Fixes TypeError in keys() for JsMapFromStringTo in dev mode.

2013-03-12 Thread James Nelson
James Nelson has posted comments on this change. Change subject: Fixes TypeError in keys() for JsMapFromStringTo in dev mode. .. Patch Set 1: This needs to be rebased on top of master; it was submitted without running git

[gwt-contrib] Change in gwt[master]: set target and source level to 1.6 for JSP compilation

2013-03-12 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: set target and source level to 1.6 for JSP compilation .. Patch Set 2: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2201 To

[gwt-contrib] Change in gwt[master]: set target and source level to 1.6 for JSP compilation

2013-03-12 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: set target and source level to 1.6 for JSP compilation .. Patch Set 2: Code-Review+1 Not directly related, but Thomas previously tried adding tests for JSPs

[gwt-contrib] Change in gwt[master]: Add a /policies/ directory to Super Dev Mode code server.

2013-03-12 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Add a /policies/ directory to Super Dev Mode code server. .. Patch Set 1: Code-Review+1 (1 comment)