Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 1 month ago
Report view in Applet
I hope this code useful. it's view report in java Applet. Actually it's work i-report web viewer. but there need a jar file, which i include there.
AppletIntegration applet = new AppletIntegration() {
private static final long serialVersionUID = 1L;
@Override
public void attach() {
setAppletArchives(Arrays.asList(new String[] { "JRViewerApplet.jar" }));
setCodebase(codeBase);
setAppletClass("JRViewerApplet.class");
setWidth("100%");
setHeight("100%");
setAppletParams("REPORT_URL", url+"/"+fname);
}
};
Last updated on
You cannot reply to this thread.