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?
new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "path\test.html"
}
}]
}).show();