Reputation: 4849
I am working on chrriis.dj.nativeswing.swtimpl.components.JWebBrowser, I tried demo and everything looks fine but I was unable to find any event to detect documentcomplete
Upvotes: 1
Views: 1220
Reputation: 4849
As far I found there is no DocumentCompleted Event But I have achieved similar results by adding listeners using
webBrowser.addWebBrowserListener(new WebBrowserListener() {
public void loadingProgressChanged(WebBrowserEvent wbe) {
JWebBrowser wb = wbe.getWebBrowser();
String pageUrl = wb.getResourceLocation();
int progress = wb.getLoadingProgress();
if (progress == 100) {
String jsCommand = "";
....
wb.executeJavascript(jsCommand);
}
}
}
...
Upvotes: 1