SmartClient Version: v13.1p_2024-12-01/AllModules Development Only (built 2024-12-01)
Hello, it seems that on iOS, where I have my application installed with "Add to homescreen", if I download a custom PDF file using this code:
server side I've got:
it is opened in the PWA window, so after visualizing it I can't go back.
Is it expected behaviour?
Hello, it seems that on iOS, where I have my application installed with "Add to homescreen", if I download a custom PDF file using this code:
Code:
myDS.exportData( criteria, { exportDisplay: "download", exportAs: "custom" } );
Code:
rpcManager.doCustomResponse(); RequestContext.setNoCacheHeaders(response); String contentType = "application/pdf"; response.setContentType(contentType); response.addHeader("content-disposition", "attachment; filename=" + filename);
Is it expected behaviour?
Comment