我用於打印毫秒報告查看器和推薦你。 在aspx頁面上做出定性報告,並在彈出窗口的框架中顯示它。 有對齊問題不會發生。
或者將報告生成爲html並將其插入到框架中。 這裏是工作示例:這裏http://jsfiddle.net/D4K3E/1/, 是代碼:
ShowPrintWindow = function (frameUrl, title, width, height, hidePrintButton) {
height = height ? height : 509;
width = width ? width : 675;
if (typeof (title) == 'undefined') title = 'Печать';
var win = Ext.create('Ext.window.Window', {
id: 'printWindow',
width: width,
height: height,
autoDestroy: true,
title: title,
iconCls: 'icon-printer',
modal: true,
items: [{
border: false,
html: '<iframe id="printFrame" src="' +
frameUrl +
'" width="' +
(width - 12) +
'" height="' +
(height - 61) +
'" frameborder="0"></iframe>'
}],
layout: 'fit',
buttons: [{
iconCls: 'icon-printer',
text: 'Print',
hidden: hidePrintButton ? true : false,
listeners: {
click: {
fn: function (item, e) {
printIframe('printFrame');
}
}
}
}, {
text: 'Close',
listeners: {
click: {
fn: function (item, e) {
Ext.getCmp('printWindow').close();
}
}
}
}]
}).show();
};
function printIframe(id) {
var iframe = document.frames ? document.frames[id] : document.getElementById(id);
var ifWin = iframe.contentWindow || iframe;
iframe.focus();
ifWin.print();
return false;
}
謝謝老兄您的回覆,我來試試,並告訴你結果。 :) – haytham