Re: Getting rid of Dev mode for future GWT releases

2015-12-30 Thread Chak Lai
In the past, I had encountered situations that the code works fine under Dev-Mode, but things went wrong in production mode, or acted differently in production mode. At the beginning I had a hard time to switch from Dev-Mode to SDM. It took me "forever" to trace the bugs in my code. I found

Re: How to Remote Logging without using RPC?

2015-06-29 Thread Chak Lai
Thank you. -- 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, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

How to Remote Logging without using RPC?

2015-06-29 Thread Chak Lai
In the GWT application that I am working on, it is setup to remote-logging with any uncaught exceptions via SerializableThrowable RPC StackTraceDeobfuscator ... Is there any documentation on how to do it without using RPC? I have search the Internet but is seems most of the documentation

Re: Development Mode will not be supported in Firefox 27+

2014-04-09 Thread Chak Lai
The stack-trace in Super Dev Mode is the only major issue that I have. It would be nice if the UncaughtException in SDM can tell me which line in java source is causing the problem, instead of giving me those JavaScript stack-trace messages... So far I like SDM. My current project is

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-06 Thread Chak Lai
Just wondering how would the JavaFX WebView if you change the style from GWT, instead from CSS file. For instance: public static void setFxPadding(com.google.gwt.user.client.Element element) { element.getStyle().setProperty(FxPadding, 0px 0px 0px 22px); } On Wednesday, November 6,

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-28 Thread Chak Lai
If IE7support is removed from GWT, will GWT run correctly on IE in Intranet? (IE will default to IE7 Browser mode for Intranet Website) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-28 Thread Chak Lai
In Intranet environment, that META tag can only change IE Document Mode (such as how IE layout the web page), but it cannot change IE Browser Mode (such as IE's JavaScript Engine). It is because the Browser Mode is loaded (Intranet is detected) before IE parse the HTML. Even with the meta

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-28 Thread Chak Lai
On Monday, October 28, 2013 3:49:19 PM UTC-4, Jens wrote: In Intranet environment, that META tag can only change IE Document Mode (such as how IE layout the web page), but it cannot change IE Browser Mode (such as IE's JavaScript Engine). It is because the Browser Mode is loaded

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-28 Thread Chak Lai
IE8 to behave when in intranet mode, loading the exact same html content and sending the same ua-compat details over a HTTP header *does* solve this. On Monday, October 28, 2013 3:08:47 PM UTC-5, Chak Lai wrote: On Monday, October 28, 2013 3:49:19 PM UTC-4, Jens wrote: In Intranet

Re: Elegant handling of user experience when new GWT application is deployed.

2013-01-08 Thread Chak Lai
On Tuesday, January 8, 2013 12:16:54 PM UTC-5, DrG wrote: Is there an elegant solution to handle when a new release is deployed while you are in the GWT app? E.g. we want the application to notice a new version of itself and automatically do a full page refresh? Ideas? In the project

Re: GWT Compilation Time Performance Improvement

2012-09-06 Thread Chak Lai
Instead of compiling one permutation at a time, there is an option to compile multiple permutations at the same time by mutli-process. Here is the parameter I used in the Ant build.xml file (sorry, I don't use maven), all you needed to add -localWorkers within gwtc target tag: target name=gwtc

Re: GWT/GXT File-Upload Example

2012-08-15 Thread Chak Lai
Have you try using FileUpload object from GWT? http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/FileUpload.html On Wednesday, August 15, 2012 5:13:52 AM UTC-4, Sascha Hoffmann wrote: Hi everybody I have only a little question. Is anybody here who

Re: GWT 2.0.0 DevMode: Strange warning when RPC with some object as parameter

2012-08-13 Thread Chak Lai
I am assuming you are using GWT SDK In the Ant file build.xml, don't forget to update the path of GWT. !-- Configure path to GWT SDK -- property name=gwt.sdk location=C:/gwt-2.4.0 / You may also need to validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA-sources.jar point to the right

Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
It has been confirm that the release date for Windows 8 is October 26, 2012. Windows 8 also includes the next version of its browser: Internet Explorer 10. Will GWT 2.5 (final release) support IE10? -- You received this message because you are subscribed to the Google Groups Google Web

Re: Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
Thank you for the reply. -- 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/-/EgXriYXO_hsJ. To post to this group, send email to

Re: Firefox 13 DevMode Plugin

2012-06-11 Thread Chak Lai
Thank you very much. -- 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/-/gQ16KwAqCLcJ. To post to this group, send email to

Re: XSRF Initial Token Generation

2011-07-18 Thread Chak Lai
You may just set the cookie using the methods in com.google.gwt.user.client.Cookies For example: public void onModuleLoad() { Cookies.setCookie(JSESSIONID, Any value you like for the XSRF Token creation); } -- You received this message because you are subscribed to the Google Groups

Re: R: Re: Re: Can't install Google Web Toolkit Developer Plugin under Chrome

2011-07-13 Thread Chak Lai
You may want to try the offline installation Firefox - https://dl.google.com/dl/gwt/plugins/firefox/gwt-dev-plugin.xpi Chrome - https://dl.google.com/dl/gwt/plugins/chrome/gwt-dev-plugin.crx Safari - https://dl.google.com/dl/gwt/plugins/safari/gwt-dev-plugin.dmg -- You received this message