我有一个来自Camtasia的test.html里面有视频。 我想从index.html在sencha extjs窗口中调用它。 它应该被称为iframe,怎么做?
答案 0 :(得分:3)
ExtJS附带ux Component。我建议使用这个。您还可以找到this thread helpful
答案 1 :(得分:0)
new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "path\test.html"
}
}]
}).show();