如何在sencha-extjs窗口中获取iframe

how to get iframe in window of sencha extjs?

本文关键字:获取 iframe 窗口 sencha-extjs      更新时间:2023-09-26

我有一个来自Camtasia的test.html,里面有视频。我想在index.html的sencha-extjs窗口中调用它。它应该被称为iframe,如何做到这一点?

ExtJS附带了一个ux组件。我建议使用这个。您还可以发现这个线程对很有帮助

new Ext.Window({
    title : "iframe",
    width : 300,
    height: 300,
    layout : 'fit',
    items : [{
        xtype : "component",
        autoEl : {
            tag : "iframe",
            src : "path'test.html"
        }
    }]
}).show();