MS Edge - readEntries() doesn't work

2017-06-07 Thread Daniel Kln
Hello everyone, i want to traverse a file system like in following example: function traverse(entry, path) { path = path || ""; if (entry.isFile) { // Get file item.file(function(file) { console.log("File:", path + file.name); }); } else if (entry.isDirectory) {

Re: doesn't work

2017-02-16 Thread Daniel Kln
I am using GWT 2.8.0 Am Donnerstag, 16. Februar 2017 12:46:27 UTC+1 schrieb Daniel Kln: > > Hello, > > i try to integrate my gwt app into a normal plain html page (code > "integrationPrototyp.html" see below). > > When running the integrationPrototyp.h

doesn't work

2017-02-16 Thread Daniel Kln
Hello, i try to integrate my gwt app into a normal plain html page (code "integrationPrototyp.html" see below). When running the integrationPrototyp.html on the chrome console i get following message: GET http://danielvm:8080/integrationPrototyp/41CC993CFD36A1ACD71989CF13EBCD05.cache.js

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
to remove the -ea argument worked too. i could remove the comment in my xml file and got a positive result. Thank you by the way, yes i am using gwt version 2.7 Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run config the arg

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
Thank you thomas, caused by your hint i could find the mistake. in my gwt.xml file i added a block comment around: this solved the problem. Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run config the arg: -Dgwt.args="-

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
rowser version"); JsArray browserInformation = BrowserParameter.getBrowserVersion(); System.out.println("Browser information: " + browserInformation); // do sth. with browserInformaton System.out.println("Test 1 finish"); } Am Dienstag, 14. Februa

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192) Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run co

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
the image shows my browser result. they say in the text that this should happen, but it doesn t work. so i need an alternativ with the same result except selenium. Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run config the arg

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
Manual:1 to the -Dgwt.args part. Manual mode can also be used for remote browser testing <http://www.gwtproject.org/doc/latest/DevGuideTestingRemoteTesting.html#Manual> . Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run config t

Re: GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
URL: http://10.0.75.1:51428/de.abc.application.Application.JUnit/junit.html?gwt.codesvr=10.0.75.1:51426 pasting link into browser (i tried ff, chrome and edge) Thank you Am Dienstag, 14. Februar 2017 11:52:33 UTC+1 schrieb Daniel Kln: > > Hi, > > i setted in the run config the ar

GWT junit test in super dev mode???

2017-02-14 Thread Daniel Kln
Hi, i setted in the run config the arg: -Dgwt.args="-runStyle Manual:1". When i start running the gwt unit test, i get a link, which i have to paste into a browser of my choice. This is what i expected. But than the browser shows: Development Mode requires the GWT Developer Plugin My

FileUpload doesn't jumps in ChangeHandler

2016-07-20 Thread Daniel Kln
Hello together, i would like to know why after selecting a directory, the onChange method isn't triggered? Thank you very much for your help. Code: public class CenterPanel extends ScrollPanel { final FileUpload fileUpload = new FileUpload(); public CenterPanel(final GoogleUploader