function multiplePrintWindow(sqltxnpks) {
var win = new Ext.Window({
id : 'reportwin',
title : "打印预览",
layout : 'fit',
width : 720,
height : 500,
closeAction : 'close',
autoScroll : false,
plain : true,
bodyStyle : 'padding:2px;',
buttonAlign : 'center',
buttons : [{
text : '关闭',
handler : function() {
win.close()
}
}],
isTopContainer : true,
modal : true, // 模式窗口
contentEl : Ext.DomHelper.append(document.body, {
tag : 'iframe',
src : MultiplePrintUrl+sqltxnpks+PDF_Formatstr,
height : '100%',
width : '100%',
name:'PDFVIEW',
id:'PDFVIEW'
})
}); win.show(); } 如上的代码,当单笔打印时,正常显示打印预览,但是当多笔打印时打印预览里却是空的
这是什么问题导致的,难道要分页?求解extjs