Re: Reload window once

2011-02-12 Thread daniela iervolino
The problem is always the same: it shows me a blank page. I applied the modification of John and then I call the method reload(), but the token remains #logout and the page isn't really reloaded.. On 11 Feb, 21:31, Giuseppe La Scaleia giuseppe.lascal...@geosdi.org wrote: Hi you can try with this

Large memory leak in IE8 when GWT runs on a new Window

2011-02-12 Thread Reuben S
We have a number of fairly large GWT/GXT screens in our application, most of them run 'embedded' in our application main window, which includes a mix of 'legacy' client code and areas of GXT code. Navigating to and away from pages containing GWT code does not show any significant memory leaks in

showcase from gwt examples

2011-02-12 Thread MIKE
Trying to run showcase example and get the following error. [ERROR] [t] - No resource found for key 'contactDatabaseCategories' com.google.gwt.i18n.rebind.AbstractResource$MissingResourceException: No resource found for key 'contactDatabaseCategories' [ERROR] [t] - Deferred binding failed for

Re: Putting bootstrap js in host page

2011-02-12 Thread Thomas Broyer
On Thursday, February 10, 2011 6:11:51 PM UTC+1, Paul Smith wrote: I was just wondering if anyone has tried to put the bootstrap js straight into the host page. Yes. I just use a jsp:include page=myapp/myapp.nocache.js flush=true / in my host page, which is a JSP. However, because the

Re: Debug - Maven - Eclipse

2011-02-12 Thread Jeff Larsen
If you use the archetype to create a project, to a mvn gwt:compile on it and then right click on the project and debug as web application it should work, or at least it does for me whenever I do it. -- You received this message because you are subscribed to the Google Groups Google Web

Re: Compressing cache.html files

2011-02-12 Thread Syed Ali Saim
My point exactly, Its working without me doing any things, but my *.cache.html files are about 1.05 MB, the initial loading takes a lil while. And this is not automatically compressed by appengine. Can this be something to do with appengine limit. Is there a way to compress cache.html files? Once

Re: CellTable SelectionCell or only text within a column

2011-02-12 Thread Thomas Visser
A column can only have one cell, which can't be changed on a row by row basis. You could subclass SelectionCell and override render to return the output of its super's render or the output of a TextCell that you'll store in an attribute. On Feb 12, 5:07 am, Sydney sydney.henr...@gmail.com wrote:

Re: Compressing cache.html files

2011-02-12 Thread Harald Schilly
Well, if I understand you correctly, I think you want to do something that's either not necessary or completely impossible. 1. you cannot send a .gz compressed file to gwt - you need to tell the browser to decompress the file before it is visible in the javascript application. 2. you have to

Re: Compressing cache.html files

2011-02-12 Thread Syed Ali Saim
Well I guess code splitting might be the way to go. Thanks On Sat, Feb 12, 2011 at 7:52 PM, Harald Schilly harald.schi...@gmail.comwrote: Well, if I understand you correctly, I think you want to do something that's either not necessary or completely impossible. 1. you cannot send a .gz

Re: GWT Performace Tips

2011-02-12 Thread Flemming Boller
1) Instead of the Vertifal/HorizontalPanels use UIBinder instead. We almost never use those panels but use uibinder and normal html instead. 2) Could you tell a little bit about how you found your performance problems? /Flemming On Sat, Feb 12, 2011 at 4:01 AM, tjmcc18 tjmc...@gmail.com

Re: Compressing cache.html files

2011-02-12 Thread Colin Alworth
I don't think you want to directly gzip the files, as some browser don't support downloading this. Instead, I would suggest gzipping content on the fly as needed - it is up to you to decide what should and should not be gziped (note, for example, that RPC calls over a certain size are already

Re: Did the Google Team forgot to announce GWT 2.2?

2011-02-12 Thread Steve
Guess I missed the announcement too ... but 2.2.0 is what you get when you download the sdk On Feb 11, 10:12 pm, JosephLi joseph.l...@gmail.com wrote: To my surprise I refreshed the dev guide page and it says GWT 2.2, I thought my eyes was playing tricks on me after a long day's work.

Re: Did the Google Team forgot to announce GWT 2.2?

2011-02-12 Thread Steve
Changing my pom.xml to use 2.2.0 throws lots of exceptions when I attempt to build. I added the new jars to my repository but I guess I need to wait until 2.2.0 is uploaded to the central repository so I can get their pom files and the dependencies. Back to 2.1.1 for now. I love/hate bleeding

Installing the full version of GWT Designer for 2.2

2011-02-12 Thread csillag
Hi, The news for the latest GEP (for GWT 2.2) says that there are now two versions of GWT Designer. How do I install the full, standalone one? The download link shown at page http://code.google.com/intl/en/webtoolkit/tools/gwtdesigner/installation/updatesite_3.6.html , which is still pointing to

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-12 Thread Fernando Barbat
Yes, it has a zero argument constructor. As I said, once I recompile, undeploy and deploy again, the problem goes away. I'm using Eclipse and deploy an EAR in Glasfish v3. This EAR contains an EJB jar, a GWT WAR and other jars. I noted that IncompatibleRemoteServiceException sometimes raises up

GwtDesigner questions

2011-02-12 Thread Gal Dolber
I just starting to use gwt designer, and I having a few problems: 1. I cannot find a way to include an external css file that my app uses into the uibinder editor, so I see only the inner styles of my uibinder. 2. Is the inner UiBinder class really required? Guit uses uibinder's

Re: Did the Google Team forgot to announce GWT 2.2?

2011-02-12 Thread JosephLi
Looks like the maven repository is not updated though. Joseph On Feb 12, 1:25 pm, Steve steveahlst...@gmail.com wrote: Changing my pom.xml to use 2.2.0 throws lots of exceptions when I attempt to build.  I added the new jars to my repository but I guess I need to wait until 2.2.0 is uploaded

Any working Editor framework example planned?

2011-02-12 Thread JosephLi
To GWT team, downloaded 2.2.0 and read the devguide,but it would be nice to have some working example to play with to see how it all works. Thanks, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Any working Editor framework example planned?

2011-02-12 Thread Thomas Broyer
Have a look at the DynaTableRf sample. -- 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: Announcing GPE/GWT 2.2 RC1

2011-02-12 Thread Sky
Hi, to come back to the GWT 2.2 exception Ümit mentioned above, I too have this error. Do we need a new GIN. jar?? here is my complete Stacktrace i get when i compile my project with new GWT 2.2: java.lang.IncompatibleClassChangeError: Found interface

Re: Did the Google Team forgot to announce GWT 2.2?

2011-02-12 Thread jonsm...@gmail.com
On Sat, Feb 12, 2011 at 12:38 PM, Steve steveahlst...@gmail.com wrote: Guess I missed the announcement too ... but 2.2.0 is what you get when you download the sdk My Eclipse isn't finding the SDKs and automatically downloading them. It's ok to automatically install them and then let me change

Re: GWT Base Application Featuring Best-Practice Technologies

2011-02-12 Thread George Moschovitis
Some questions / suggestions: - Is using a single PlaceController with multiple 'identifiers' really a best practice? - I would prefer using ApplicationRequestFactory instead of MyRequestFactory, etc... - I would move the files in client.application to client Moreover, I would love to see a

Re: GWT DevMode : logging to a log file

2011-02-12 Thread Adligo
Hi, I know if you use the Adligo i_log api you can send your log messages to a Servlet and log them that way. Cheers, Scott -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: UIBinder Localization anyone?

2011-02-12 Thread Aladdin
I think its case sensitive issue , pls try it as ?locale=fr usually its fr_FR en_US and stop on Hope that helps Alaa On Feb 11, 9:45 pm, SVR svr...@gmail.com wrote: Hi I am trying to localize the labels in the uibinder. I am passing the locale value through meta tag like: meta

Re: GWT Performace Tips

2011-02-12 Thread tjmcc18
So to sum it up, for better performance in IE: - Use uibinder when possible instead of constructing the layout manually - Use div based widgets instead of VerticalPanel and HorizontalPanel Does that sound about right? I'll give those a try and see if it speeds things up. We use a lot of

Re: Java Mail Provider

2011-02-12 Thread unair001
Help please.anyone? On Feb 11, 10:57 am, unair001 unair...@gmail.com wrote: In the examplehttp://code.google.com/appengine/docs/java/mail/usingjavamail.html, it does not set the Transport. If transport is not set, the application sets an error. I cannot set the Transport to smtps

Re: Announcing GPE/GWT 2.2 RC1

2011-02-12 Thread Y2i
Yes we do. Jeff Larsen has a snapshot. https://groups.google.com/d/msg/google-gin/cFIKn0lfV0c/6H-JgxKO5KEJ https://groups.google.com/d/msg/google-gin/cFIKn0lfV0c/iw4mXZBzh40J -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Announcing GPE/GWT 2.2 RC1

2011-02-12 Thread Christian Goudreau
Well, I have the same error and I compiled Gin's trunk... On Sat, Feb 12, 2011 at 7:12 PM, Y2i yur...@gmail.com wrote: Yes we do. Jeff Larsen has a snapshot. https://groups.google.com/d/msg/google-gin/cFIKn0lfV0c/6H-JgxKO5KEJ

Re: GWT Base Application Featuring Best-Practice Technologies

2011-02-12 Thread Jake Wharton
- Is using a single PlaceController with multiple 'identifiers' really a best practice? I'm not sure of the proper implementation of this. In other implementations of this type of system, I have always used what GWT calls a place as something which encapsulates numerous activities which

Re: Announcing GPE/GWT 2.2 RC1

2011-02-12 Thread Y2i
I got the jars from this link: https://github.com/larsenje/google-gin-pom/tree/master/maven They worked with GWT 2.2.0 RC1 and work now after upgrading to GWT 2.2.0 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Any working Editor framework example planned?

2011-02-12 Thread JosephLi
Thanks Thomas. Now I know what I will be majoring in if I got time for another degree, under water basket weaving sounds like fun. Joseph On Feb 12, 4:10 pm, Thomas Broyer t.bro...@gmail.com wrote: Have a look at the DynaTableRf sample. -- You received this message because you are

Invitation to CodeFest - the international online coding festival of Computer Engineering Society, ITBHU

2011-02-12 Thread vishal kumar rai
Hello , We are delighted to inform you that *Codefest '11*http://www.itbhu.ac.in/codefest/, the *annual International online coding festival* of *Computer Engineering Society, IT-BHU*, has been unveiled. CodeFest is a unique fest wherein concepts of mathematics, logic, artificial intelligence,

Re: Text property on app engine and TextArea on the client side [GWT]

2011-02-12 Thread satish
I used String after I discovered that String limitation of 500 chars applied only for app engine datastore properties. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

[gwt-contrib] ListEditor compile-time error: Type mismatch: cannot convert from ListFoo to ListBaseFoo

2011-02-12 Thread Thomas Broyer
This was originally an issue report (hence the format of this mail), but I finally decided to turn it into a discussion here. *Found in GWT Release (e.g. 1.5.3, 1.6 RC):* trunk at r9715 *Encountered on OS / Browser (e.g. WinXP, IE6-7, FF3):* N/A (compile time; I haven't tried in DevMode)

[gwt-contrib] Re: ListEditor compile-time error: Type mismatch: cannot convert from ListFoo to ListBaseFoo

2011-02-12 Thread Thomas Broyer
I just tried my workaround on my real app and it actually doesn't work: the BaseFooEditor_subEditor_Context class is generated based on the parameterization of the first found instance so the following uses with another parameterization don't compile. E.g. public class

[gwt-contrib] Re: ListEditor compile-time error: Type mismatch: cannot convert from ListFoo to ListBaseFoo

2011-02-12 Thread Thomas Broyer
I filed a bug for the filename length issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=6015 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors