SmartClient Version: v8.3p_2012-12-08/Pro Deployment (built 2012-12-08)
FireFox 15.0 & IE 10
When I try to export something to pdf, the browser just opens a new tab with a small text box that says:
"//isc_RPCResponseStart-->[{status:-1,data:null}]//isc_RPCResponseEnd"
Similar to this problem but not with the same text: http://forums.smartclient.com/showthread.php?t=22937
If you need me to post anything from the developer console let me know.
/Tilds
FireFox 15.0 & IE 10
When I try to export something to pdf, the browser just opens a new tab with a small text box that says:
"//isc_RPCResponseStart-->[{status:-1,data:null}]//isc_RPCResponseEnd"
Similar to this problem but not with the same text: http://forums.smartclient.com/showthread.php?t=22937
Code:
Label label = new Label("TEST!");
DSRequest requestProperties = new DSRequest();
requestProperties.setExportFilename("test.pdf");
requestProperties.setExportDisplay(ExportDisplay.DOWNLOAD);
requestProperties.setContentType("application/pdf");
requestProperties.setDownloadResult(true);
RPCManager.exportContent(label, requestProperties);
/Tilds
Comment