비디오가있는 Camtasia의 test.html이 있습니다. index.html의 sencha extjs 창에서 호출하고 싶습니다. iframe로 호출해야합니다. 어떻게해야합니까?sencha extjs 창에서 iframe을 가져 오는 방법은 무엇입니까?
0
A
답변
0
new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "path\test.html"
}
}]
}).show();
3
ExtJS와 함께 제공되는 ux Component이 있습니다. 이것을 사용하는 것이 좋습니다. 당신도 찾을 수 있습니다 this thread helpful
입니다 src : "경로"html로 iframe에 경로 ?? –
왜 당신은 이미 존재하는 것을 재 포장합니까? -1 – seba
이것은 html 파일의 경로입니다. – Aashray