Re: Window.open

2015-07-15 Thread ckuetbach
I think it may be a whitespace in the Window-Name (second Parameter), Christian Kütbach -- 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

Re: SuggestBox and the underlying TextBox

2014-11-28 Thread ckuetbach
Thanks for the anwser, I will take a look at the arcbee-project. I think I found another trick to make the Suggestbox do what I want (There is no need for timer or delays):

SuggestBox and the underlying TextBox

2014-11-27 Thread ckuetbach
Hello, I have some trouble with the SuggestBox. There are at least two Hadler at the SuggestBox: - ValueChangeHandler - SelectionHandler If I enter a Text into the SuggestBox and unfocus it, I get the ValueChangeEvent, with the current Value (I need to validate the Input at this moment) If

Internet Explorer 11 - compatibility mode

2014-06-17 Thread ckuetbach
Hello, I had some trouble with embedded IE11-webviews. The useragent contains *msie *and the *documentMode *is 11. This is why they get the IE10 permutation. But the IE11-browser has removed some functions in the compat mode. (createStyleSheet for example) So I used a custom

Compiler Issue after upgrade from 2.5.1 to 2.6

2014-03-19 Thread ckuetbach
Hello *, I think I've found an Issue within GWT 2.6 compiler. The Issue may be related to. https://code.google.com/p/google-web-toolkit/issues/detail?id=8533 https://code.google.com/p/google-web-toolkit/issues/detail?id=7860 Is it possible to print the clasname of the Class which is

Re: Compiler Issue after upgrade from 2.5.1 to 2.6

2014-03-19 Thread ckuetbach
Right now the Problem does only appear, while running *mvn gwt:test* from the commandline. If I compile the module within eclipse or run the integrationtests in eclipse everything looks fine. I will investigate further. Could it be a classloading issue? The sources resists in different sorce

Re: Compiler Issue after upgrade from 2.5.1 to 2.6

2014-03-19 Thread ckuetbach
Thanks for your reply. I found the problematic class. I've written a JUnit TestCase with PowerMockito. For an unknown reason this class was compiled by the GWT compiler (I think it is a misconfiguration of the maven source folders). I don't think, that it is a bug within the compiler if

Re: is code using DateTimeFormat not testable?

2013-08-29 Thread ckuetbach
Ithink there is a bug in The DateTimeFormat GWT version 2.5.1: I use the DateTimeFormat from the shared package. As far as I know, classes from the shared package can be used at client and at serverside. But the method private static DateTimeFormatInfo getDefaultDateTimeFormatInfo() { //

Re: is code using DateTimeFormat not testable?

2013-08-29 Thread ckuetbach
Just found the Issue: https://code.google.com/p/google-web-toolkit/issues/detail?id=7671 -- 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

Re: Are servlets available when performing GWT Unit Tests?

2013-08-12 Thread ckuetbach
Hi Thomas, are there any known regressions with this way in GWT 2.5.1? I created a moduleText.gwt.xml with inherits my module.gwt.xml to add the servlet-element. If I misspell the servlet-classname, I get an error loading the module. But if everything seems to be correct, I don't get any

LogRecord in JRE Emulation

2013-01-31 Thread ckuetbach
Hi, I have a question regarding the logging in GWT. Why does the JRE-Emulation of* java.util.logging.LogRecord* does not include the following methods: // public void setSourceClassName(String sourceClassName) {} // public void setSourceMethodName(String sourceMethodName) {} It would be