SmartClient Version: v8.3p_2013-01-31/PowerEdition Deployment (built 2013-01-31)
Running following code auto-opens temporarily in browser new TAB (tested with FF18,FF19,IE9).
If backend processing takes for whatever reason longer time it brings to the end user confusing experience – opened browser tab for a while and then closed.
We suspect it is related to the transport type: hiddenFrame
Is it possible to eliminate temporarily auto-opening of the new browser tab?
final DSRequest requestProperties = new DSRequest();
requestProperties.setDownloadResult(true);
requestProperties.setExportDisplay(ExportDisplay.DOWNLOAD);
requestProperties.setContentType("application/pdf");
RPCManager.exportContent(canvas, requestProperties);
Many thanks,
zapryano
Running following code auto-opens temporarily in browser new TAB (tested with FF18,FF19,IE9).
If backend processing takes for whatever reason longer time it brings to the end user confusing experience – opened browser tab for a while and then closed.
We suspect it is related to the transport type: hiddenFrame
Is it possible to eliminate temporarily auto-opening of the new browser tab?
final DSRequest requestProperties = new DSRequest();
requestProperties.setDownloadResult(true);
requestProperties.setExportDisplay(ExportDisplay.DOWNLOAD);
requestProperties.setContentType("application/pdf");
RPCManager.exportContent(canvas, requestProperties);
Many thanks,
zapryano
Comment