您好,
此问题是由于chrome升级引起的,推测是chrome的bug。
可使用以下代码解决此问题:- 通过监听BeforePrint事件,在打印前执行下方代码逻辑:
- spread.bind(GC.Spread.Sheets.Events.BeforePrint, function (type, args) {
- var iframe = args.iframe;
- var printFn = iframe.contentWindow.print;
- iframe.contentWindow.print = function () {
- setTimeout( function () {
- printFn.apply( null , arguments);
- }, 10);
- }
- });
复制代码
|