Search code examples
javascriptiframeextjscamtasia

how to get iframe in window of sencha extjs?


i have a test.html from Camtasia with video inside. i want call it in sencha extjs window from index.html. it should be called as iframe, how to do that?


Solution

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