在我的Ext js应用程序中,我想查看excel&amp;面板中的word文件,我尝试使用 iframe ,仅在我的代码下面在浏览器中下载excel但是我需要在面板中查看excel,如果我错了就更正我的代码,提前谢谢。< / p>
new Ext.Window({
title : "Excel",
width : 400,
height: 800,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "Demo.xls"
}
}]
}).show();
答案 0 :(得分:0)
您可以尝试使用Google文档显示Excel文件:
var ExcelFileName = *url to excel file*
new Ext.Window({
title : "Excel",
width : 400,
height: 800,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "https://docs.google.com/gview?url=" + ExcelFileName + "&embedded=true"
}
}]
}).show();