I'm in the process of upgrading from SmartClient Version: v8.3p_2013-11-14/PowerEdition to SmartClient_v101p_2016-05-14_PowerEdition
I'm running in chrome Version 50.0.2661.102 m
The standard BOM call "window.open(url)" is no longer working in 10.1. This call still works properly in my 8.3 version. Any ideas on why this code would stop working?
I'm running in chrome Version 50.0.2661.102 m
The standard BOM call "window.open(url)" is no longer working in 10.1. This call still works properly in my 8.3 version. Any ideas on why this code would stop working?
Code:
isc.ReportManager.downloadFile = function(key) { window.open('DownloadFile?key='+key); } isc.ReportManager.displayFile = function(key, print) { var newwin = window.open('DisplayFile?key='+key); if(print) newwin.print(); }
Comment